summaryrefslogtreecommitdiff
path: root/test/unit/user_test.rb
diff options
context:
space:
mode:
authorankonym <ankonym@gmail.com>2015-08-13 17:24:31 +0200
committerankonym <ankonym@gmail.com>2015-09-28 15:12:45 +0200
commit8b5665b857edc460ef6105c3ba0f106dd99a25d5 (patch)
tree11ce426d18b60965c5128feb13f958f3b2dd0253 /test/unit/user_test.rb
parent8b9b2a0c3c8457024d99d0794416c59cb245a513 (diff)
Fix test based on actual invite code validation
Diffstat (limited to 'test/unit/user_test.rb')
-rw-r--r--test/unit/user_test.rb23
1 files changed, 20 insertions, 3 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index cd290d5..e28bef6 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -4,6 +4,7 @@ class UserTest < ActiveSupport::TestCase
include SRP::Util
setup do
+ InviteCodeValidator.any_instance.stubs(:not_existent?).returns(false)
@user = FactoryGirl.build(:user)
end
@@ -70,9 +71,25 @@ class UserTest < ActiveSupport::TestCase
assert_equal key, @user.public_key
end
- test "user should have an invite token" do
- user = User.new
- assert_nil(user.invite_code)
+ test "user should not be created with invalid invite code" do
+ InviteCodeValidator.any_instance.stubs(:not_existent?).returns(true)
+ invalid_user = FactoryGirl.build(:user)
+
+ assert !invalid_user.valid?
+ end
+
+ test "user should be created with valid invite code" do
+ assert @user.valid?
+ end
+
+ test "trying to create a user with invalid invite code should add error" do
+ InviteCodeValidator.any_instance.stubs(:not_existent?).returns(true)
+ invalid_user = FactoryGirl.build(:user)
+
+ invalid_user.valid?
+
+ errors = {invite_code: ["This is not a valid code"]}
+ assert_equal errors, invalid_user.errors.messages
end
#