Sha256: 30da53542fbd6bbfeb96451abdfaafdf8c23d19d2dcae4aba7ef65d0b771e058
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
require 'spec_helper' describe Keepassx::Database do describe 'self.open' do it "creates a new instance of the databse with the file" do db = Keepassx::Database.open(TEST_DATABASE_PATH) db.should_not be_nil end end describe "unlock" do before :each do @db = Keepassx::Database.open(TEST_DATABASE_PATH) @db.should be_valid end it "returns true when the master password is correct" do @db.unlock('testmasterpassword').should be_true end it "returns false when the master password is incorrect" do @db.unlock('bad password').should be_false end end describe "an unlocked database" do before :each do @db = Keepassx::Database.open(TEST_DATABASE_PATH) @db.unlock('testmasterpassword') end it "can find entries by their title" do @db.entry("test entry").password.should == "testpassword" end it "can find groups" do @db.groups.map(&:name).sort.should == ["Backup", "Internet", "eMail"] end it "can search for entries" do entries = @db.search "test" entries.first.title.should == "test entry" end it "can search for entries case-insensitively" do entries = @db.search "TEST" entries.first.title.should == "test entry" end it "will find the current values of entries with history" do entries = @db.search "entry2" entries.size.should == 1 entries.first.title.should == "entry2" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
keepassx-0.1.0 | spec/keepassx/database_spec.rb |