예제 #1
0
def test_clams_essential():
    assert claims_match(['foobar@example'], CLAIMS['userinfo']['email'])
예제 #2
0
def test_clams_value():
    assert claims_match(
        'red', CLAIMS['userinfo']["http://example.info/claims/groups"])
예제 #3
0
def test_clams_values():
    assert claims_match("urn:mace:incommon:iap:silver",
                        CLAIMS['id_token']['acr'])
예제 #4
0
def test_clams_none():
    assert claims_match(['angle'], CLAIMS['userinfo']['nickname'])
예제 #5
0
def test_clams_none():
    assert claims_match(["angle"], CLAIMS["userinfo"]["nickname"])
예제 #6
0
def test_clams_essential():
    assert claims_match(["foobar@example"], CLAIMS["userinfo"]["email"])
예제 #7
0
def test_clams_values():
    assert claims_match("urn:mace:incommon:iap:silver", CLAIMS["id_token"]["acr"])
예제 #8
0
def test_clams_value():
    assert claims_match("red", CLAIMS["userinfo"]["http://example.info/claims/groups"])