mirror of
https://github.com/nishiki/manage-password.git
synced 2025-02-22 18:50:14 +00:00
add unittest for items
This commit is contained in:
parent
a119a954d3
commit
886595f31a
3 changed files with 229 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/ruby
|
||||||
# author: nishiki
|
# author: nishiki
|
||||||
# mail: nishiki@yaegashi.fr
|
# mail: nishiki@yaegashi.fr
|
||||||
# info: a simple script who manage your passwords
|
|
||||||
|
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require 'i18n'
|
require 'i18n'
|
||||||
|
@ -63,8 +62,11 @@ module MPW
|
||||||
@user = nil
|
@user = nil
|
||||||
@password = nil
|
@password = nil
|
||||||
@port = nil
|
@port = nil
|
||||||
|
@comment = nil
|
||||||
@created = nil
|
@created = nil
|
||||||
@last_edit = nil
|
@last_edit = nil
|
||||||
|
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
def empty?
|
def empty?
|
||||||
|
|
|
@ -1,18 +1,31 @@
|
||||||
add:
|
add_new:
|
||||||
name: 'test_name'
|
name: 'test_name'
|
||||||
group: 'test_group'
|
group: 'test_group'
|
||||||
host: 'test_host'
|
host: 'test_host'
|
||||||
protocol: 'test_protocol'
|
protocol: 'test_protocol'
|
||||||
login: 'test_login'
|
user: 'test_login'
|
||||||
password: 'test_password'
|
password: 'test_password'
|
||||||
port: '42'
|
port: '42'
|
||||||
comment: 'test_comment'
|
comment: 'test_comment'
|
||||||
|
|
||||||
|
add_existing:
|
||||||
|
id: 'TEST-ID-XXXXX'
|
||||||
|
name: 'test_name_existing'
|
||||||
|
group: 'test_group_existing'
|
||||||
|
host: 'test_host_existing'
|
||||||
|
protocol: 'test_protocol_existing'
|
||||||
|
user: 'test_user_existing'
|
||||||
|
password: 'test_password_existing'
|
||||||
|
port: '44'
|
||||||
|
comment: 'test_comment_existing'
|
||||||
|
created: 1386752948
|
||||||
|
|
||||||
update:
|
update:
|
||||||
name: 'test_name_update'
|
name: 'test_name_update'
|
||||||
group: 'test_group_update'
|
group: 'test_group_update'
|
||||||
host: 'test_host_update'
|
host: 'test_host_update'
|
||||||
protocol: 'test_protocol_update'
|
protocol: 'test_protocol_update'
|
||||||
login: 'test_login_update'
|
user: 'test_login_update'
|
||||||
password: 'test_password_update'
|
password: 'test_password_update'
|
||||||
port: '43'
|
port: '43'
|
||||||
comment: 'test_comment_update'
|
comment: 'test_comment_update'
|
||||||
|
|
210
test/test_item.rb
Normal file
210
test/test_item.rb
Normal file
|
@ -0,0 +1,210 @@
|
||||||
|
#!/usr/bin/ruby
|
||||||
|
|
||||||
|
require_relative '../lib/Item'
|
||||||
|
require 'test/unit'
|
||||||
|
require 'yaml'
|
||||||
|
|
||||||
|
class TestItem < Test::Unit::TestCase
|
||||||
|
def setup
|
||||||
|
@fixture_file = 'files/fixtures.yml'
|
||||||
|
@fixtures = YAML.load_file(@fixture_file)
|
||||||
|
|
||||||
|
if defined?(I18n.enforce_available_locales)
|
||||||
|
I18n.enforce_available_locales = false
|
||||||
|
end
|
||||||
|
|
||||||
|
puts
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_01_add_new
|
||||||
|
data = {name: @fixtures['add_new']['name'],
|
||||||
|
group: @fixtures['add_new']['group'],
|
||||||
|
host: @fixtures['add_new']['host'],
|
||||||
|
protocol: @fixtures['add_new']['protocol'],
|
||||||
|
user: @fixtures['add_new']['user'],
|
||||||
|
password: @fixtures['add_new']['password'],
|
||||||
|
port: @fixtures['add_new']['port'],
|
||||||
|
comment: @fixtures['add_new']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
assert_equal(@fixtures['add_new']['name'], item.name)
|
||||||
|
assert_equal(@fixtures['add_new']['group'], item.group)
|
||||||
|
assert_equal(@fixtures['add_new']['host'], item.host)
|
||||||
|
assert_equal(@fixtures['add_new']['protocol'], item.protocol)
|
||||||
|
assert_equal(@fixtures['add_new']['user'], item.user)
|
||||||
|
assert_equal(@fixtures['add_new']['password'], item.password)
|
||||||
|
assert_equal(@fixtures['add_new']['port'].to_i, item.port)
|
||||||
|
assert_equal(@fixtures['add_new']['comment'], item.comment)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_02_add_existing
|
||||||
|
data = {id: @fixtures['add_existing']['id'],
|
||||||
|
name: @fixtures['add_existing']['name'],
|
||||||
|
group: @fixtures['add_existing']['group'],
|
||||||
|
host: @fixtures['add_existing']['host'],
|
||||||
|
protocol: @fixtures['add_existing']['protocol'],
|
||||||
|
user: @fixtures['add_existing']['user'],
|
||||||
|
password: @fixtures['add_existing']['password'],
|
||||||
|
port: @fixtures['add_existing']['port'],
|
||||||
|
comment: @fixtures['add_existing']['comment'],
|
||||||
|
created: @fixtures['add_existing']['created'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
assert_equal(@fixtures['add_existing']['id'], item.id)
|
||||||
|
assert_equal(@fixtures['add_existing']['name'], item.name)
|
||||||
|
assert_equal(@fixtures['add_existing']['group'], item.group)
|
||||||
|
assert_equal(@fixtures['add_existing']['host'], item.host)
|
||||||
|
assert_equal(@fixtures['add_existing']['protocol'], item.protocol)
|
||||||
|
assert_equal(@fixtures['add_existing']['user'], item.user)
|
||||||
|
assert_equal(@fixtures['add_existing']['password'], item.password)
|
||||||
|
assert_equal(@fixtures['add_existing']['port'].to_i, item.port)
|
||||||
|
assert_equal(@fixtures['add_existing']['comment'], item.comment)
|
||||||
|
assert_equal(@fixtures['add_existing']['created'], item.created)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_03_update
|
||||||
|
data = {name: @fixtures['add_new']['name'],
|
||||||
|
group: @fixtures['add_new']['group'],
|
||||||
|
host: @fixtures['add_new']['host'],
|
||||||
|
protocol: @fixtures['add_new']['protocol'],
|
||||||
|
user: @fixtures['add_new']['user'],
|
||||||
|
password: @fixtures['add_new']['password'],
|
||||||
|
port: @fixtures['add_new']['port'],
|
||||||
|
comment: @fixtures['add_new']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
created = item.created
|
||||||
|
last_edit = item.last_edit
|
||||||
|
|
||||||
|
data = {name: @fixtures['update']['name'],
|
||||||
|
group: @fixtures['update']['group'],
|
||||||
|
host: @fixtures['update']['host'],
|
||||||
|
protocol: @fixtures['update']['protocol'],
|
||||||
|
user: @fixtures['update']['user'],
|
||||||
|
password: @fixtures['update']['password'],
|
||||||
|
port: @fixtures['update']['port'],
|
||||||
|
comment: @fixtures['update']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
sleep(1)
|
||||||
|
assert(item.update(data))
|
||||||
|
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
assert_equal(@fixtures['update']['name'], item.name)
|
||||||
|
assert_equal(@fixtures['update']['group'], item.group)
|
||||||
|
assert_equal(@fixtures['update']['host'], item.host)
|
||||||
|
assert_equal(@fixtures['update']['protocol'], item.protocol)
|
||||||
|
assert_equal(@fixtures['update']['user'], item.user)
|
||||||
|
assert_equal(@fixtures['update']['password'], item.password)
|
||||||
|
assert_equal(@fixtures['update']['port'].to_i, item.port)
|
||||||
|
assert_equal(@fixtures['update']['comment'], item.comment)
|
||||||
|
|
||||||
|
assert_equal(created, item.created)
|
||||||
|
assert_not_equal(last_edit, item.last_edit)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_04_update_with_empty_name
|
||||||
|
data = {name: @fixtures['add_new']['name'],
|
||||||
|
group: @fixtures['add_new']['group'],
|
||||||
|
host: @fixtures['add_new']['host'],
|
||||||
|
protocol: @fixtures['add_new']['protocol'],
|
||||||
|
user: @fixtures['add_new']['user'],
|
||||||
|
password: @fixtures['add_new']['password'],
|
||||||
|
port: @fixtures['add_new']['port'],
|
||||||
|
comment: @fixtures['add_new']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
last_edit = item.last_edit
|
||||||
|
|
||||||
|
sleep(1)
|
||||||
|
assert(!item.update({name: ''}))
|
||||||
|
|
||||||
|
assert_equal(last_edit, item.last_edit)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_05_update_one_element
|
||||||
|
data = {name: @fixtures['add_new']['name'],
|
||||||
|
group: @fixtures['add_new']['group'],
|
||||||
|
host: @fixtures['add_new']['host'],
|
||||||
|
protocol: @fixtures['add_new']['protocol'],
|
||||||
|
user: @fixtures['add_new']['user'],
|
||||||
|
password: @fixtures['add_new']['password'],
|
||||||
|
port: @fixtures['add_new']['port'],
|
||||||
|
comment: @fixtures['add_new']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
last_edit = item.last_edit
|
||||||
|
|
||||||
|
sleep(1)
|
||||||
|
assert(item.update({comment: @fixtures['update']['comment']}))
|
||||||
|
|
||||||
|
assert_equal(@fixtures['add_new']['name'], item.name)
|
||||||
|
assert_equal(@fixtures['add_new']['group'], item.group)
|
||||||
|
assert_equal(@fixtures['add_new']['host'], item.host)
|
||||||
|
assert_equal(@fixtures['add_new']['protocol'], item.protocol)
|
||||||
|
assert_equal(@fixtures['add_new']['user'], item.user)
|
||||||
|
assert_equal(@fixtures['add_new']['password'], item.password)
|
||||||
|
assert_equal(@fixtures['add_new']['port'].to_i, item.port)
|
||||||
|
assert_equal(@fixtures['update']['comment'], item.comment)
|
||||||
|
|
||||||
|
assert_not_equal(last_edit, item.last_edit)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_04_delete
|
||||||
|
data = {name: @fixtures['add_new']['name'],
|
||||||
|
group: @fixtures['add_new']['group'],
|
||||||
|
host: @fixtures['add_new']['host'],
|
||||||
|
protocol: @fixtures['add_new']['protocol'],
|
||||||
|
user: @fixtures['add_new']['user'],
|
||||||
|
password: @fixtures['add_new']['password'],
|
||||||
|
port: @fixtures['add_new']['port'],
|
||||||
|
comment: @fixtures['add_new']['comment'],
|
||||||
|
}
|
||||||
|
|
||||||
|
item = MPW::Item.new(data)
|
||||||
|
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(!item.empty?)
|
||||||
|
|
||||||
|
assert(item.delete)
|
||||||
|
assert(!item.nil?)
|
||||||
|
assert(item.empty?)
|
||||||
|
|
||||||
|
assert_equal(nil, item.id)
|
||||||
|
assert_equal(nil, item.name)
|
||||||
|
assert_equal(nil, item.group)
|
||||||
|
assert_equal(nil, item.host)
|
||||||
|
assert_equal(nil, item.protocol)
|
||||||
|
assert_equal(nil, item.user)
|
||||||
|
assert_equal(nil, item.password)
|
||||||
|
assert_equal(nil, item.port)
|
||||||
|
assert_equal(nil, item.comment)
|
||||||
|
assert_equal(nil, item.created)
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue