summaryrefslogtreecommitdiff
path: root/users/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-07-19 12:21:40 +0200
committerAzul <azul@leap.se>2013-07-24 10:55:51 +0200
commitc0b88d9e8fe574d6164f48211db50f3b8a4c4d93 (patch)
tree20e42fd20547705acafb3c67efe4da381982a836 /users/test
parent51582a668b04d2c1322ad1babe8599ae8797cd3b (diff)
setter for keys for dirty tracking, more robust tests
Just altering identity.keys did not mark identities as changed. Also we now have a sane default for keys.
Diffstat (limited to 'users/test')
-rw-r--r--users/test/integration/api/account_flow_test.rb5
-rw-r--r--users/test/unit/identity_test.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb
index 4c94389..93b6507 100644
--- a/users/test/integration/api/account_flow_test.rb
+++ b/users/test/integration/api/account_flow_test.rb
@@ -79,8 +79,13 @@ class AccountFlowTest < RackTest
test_public_key = 'asdlfkjslfdkjasd'
original_login = @user.login
new_login = 'zaph'
+ User.find_by_login(new_login).try(:destroy)
+ Identity.by_address.key(new_login + '@' + APP_CONFIG[:domain]).each do |identity|
+ identity.destroy
+ end
put "http://api.lvh.me:3000/1/users/" + @user.id + '.json', :user => {:public_key => test_public_key, :login => new_login}, :format => :json
@user.reload
+ assert last_response.successful?
assert_equal test_public_key, @user.public_key
assert_equal new_login, @user.login
# eventually probably want to remove most of this into a non-integration functional test
diff --git a/users/test/unit/identity_test.rb b/users/test/unit/identity_test.rb
index d20ad93..40b1296 100644
--- a/users/test/unit/identity_test.rb
+++ b/users/test/unit/identity_test.rb
@@ -57,13 +57,13 @@ class IdentityTest < ActiveSupport::TestCase
test "setting and getting pgp key" do
id = @user.identity
- id.keys[:pgp] = pgp_key_string
+ id.set_key(:pgp, pgp_key_string)
assert_equal pgp_key_string, id.keys[:pgp]
end
test "querying pgp key via couch" do
id = @user.identity
- id.keys[:pgp] = pgp_key_string
+ id.set_key(:pgp, pgp_key_string)
id.save
view = Identity.pgp_key_by_email.key(id.address)
assert_equal 1, view.rows.count