Sha256: 510cad2b42ab3f710292469e9712cabed5361ef328446fe8ba69dc28d8589a43
Contents?: true
Size: 1.96 KB
Versions: 5
Compression:
Stored size: 1.96 KB
Contents
class TestToken < Test::Unit::TestCase include AuthStub def setup stub(Yao.config).debug { false } stub(Yao.config).debug_record_response { false } end def test_expired t = Yao::Token.new({}) t.register({ "id" => "aaaa166533fd49f3b11b1cdce2430000", "issued_at" => Time.now.iso8601, "expires" => (Time.now - 3600).utc.iso8601, "tenant" => { "id" => "aaaa166533fd49f3b11b1cdce2430000" } }) assert { t.expired? } t.register({ "id" => "aaaa166533fd49f3b11b1cdce2430000", "issued_at" => Time.now.iso8601, "expires" => (Time.now + 3600).utc.iso8601, "tenant" => { "id" => "aaaa166533fd49f3b11b1cdce2430000" } }) assert { ! t.expired? } end def test_reflesh auth_url = "http://endpoint.example.com:12345" username = "udzura" tenant = "example" password = "XXXXXXXX" auth_info = { auth: { passwordCredentials: { username: username, password: password }, tenantName: tenant } } t = Yao::Token.new(auth_info) t.register({ "id" => "old_token", "issued_at" => Time.now.iso8601, "expires" => (Time.now - 3600).utc.iso8601, "tenant" => { "id" => "aaaa166533fd49f3b11b1cdce2430000" } }) assert { t.token == "old_token" } stub_auth_request(auth_url, username, password, tenant) Yao.config.auth_url auth_url t.reflesh(Yao.default_client.default) assert { t.token == "aaaa166533fd49f3b11b1cdce2430000" } end def test_current_tenant_id t = Yao::Token.new({}) t.register({ "id" => "aaaa166533fd49f3b11b1cdce2430000", "issued_at" => Time.now.iso8601, "expires" => (Time.now - 3600).utc.iso8601, "tenant" => { "id" => "aaaa166533fd49f3b11b1cdce2430000" } }) assert { Yao.current_tenant_id == "aaaa166533fd49f3b11b1cdce2430000" } end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
yao-0.3.2 | test/yao/test_token.rb |
yao-0.3.1 | test/yao/test_token.rb |
yao-0.3.0 | test/yao/test_token.rb |
yao-0.2.13 | test/yao/test_token.rb |
yao-0.2.12 | test/yao/test_token.rb |