summaryrefslogtreecommitdiff
path: root/test/auth_test.rb
blob: b8c3c050a435f04081d86447a47f85a5f83ae642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require File.expand_path(File.dirname(__FILE__) + '/test_helper')

class User

  include SRP::Authentication

  attr_accessor :salt, :verifier

  def initialize(salt, verifier)
    @salt = salt
    @verifier = verifier
  end
end

class AuthTest < Test::Unit::TestCase

  def setup
    @username = 'user'
    @password = 'opensesami'
    @client = SRP::Client.new(@username, @password)
    @server = User.new(@client.salt, @client.verifier)
  end

  def test_successful_auth
    assert @client.authenticate(@server, @username, @password)
  end

  def test_wrong_password
    assert !@client.authenticate(@server, @username, "wrong password")
  end

  def test_wrong_username
    assert !@client.authenticate(@server, "wrong username", @password)
  end
end