Exemple #1
0
 def test06_client_id_service_description(self):
     auth = IIIFAuth()
     auth.client_id_uri = 'id3'
     auth.profile_base = 'http://pb3/'
     lsd = auth.client_id_service_description()
     self.assertEqual( lsd['@id'], 'id3' )
     self.assertEqual( lsd['profile'], 'http://pb3/clientId' )
Exemple #2
0
 def test03_add_services(self):
     """Test add_services."""
     info = IIIFInfo()
     auth = IIIFAuth()
     self.assertEqual(info.service, None)
     # first just login
     auth.add_services(info)
     self.assertEqual(info.service, None)
     auth.login_uri = 'Xlogin'
     auth.add_services(info)
     self.assertEqual(info.service['@id'], 'Xlogin')
     # then login and logout
     info = IIIFInfo()
     auth = IIIFAuth()
     auth.login_uri = 'Xlogin'
     auth.logout_uri = 'Ylogout'
     auth.add_services(info)
     self.assertEqual(info.service['service']['@id'], 'Ylogout')
     # now add all, check we have all @ids in service description
     info = IIIFInfo()
     auth = IIIFAuth()
     auth.login_uri = 'Zlogin'
     auth.logout_uri = 'Zlogout'
     auth.client_id_uri = 'Zclient'
     auth.access_token_uri = 'Ztoken'
     auth.add_services(info)
     self.assertEqual(info.service['@id'], 'Zlogin')
     self.assertEqual(len(info.service['service']), 3)
     ids = set([e['@id'] for e in info.service['service']])
     self.assertEqual(
         ids,
         set([auth.logout_uri, auth.client_id_uri, auth.access_token_uri]))
Exemple #3
0
 def test03_add_services(self):
     info = IIIFInfo()
     auth = IIIFAuth()
     self.assertEqual( info.service, None )
     # first just login
     auth.add_services(info)
     self.assertEqual( info.service, None )
     auth.login_uri = 'Xlogin'
     auth.add_services(info)
     self.assertEqual( info.service['@id'], 'Xlogin' )
     # then login and logout
     info = IIIFInfo()
     auth = IIIFAuth()
     auth.login_uri = 'Xlogin'
     auth.logout_uri = 'Ylogout'
     auth.add_services(info)
     self.assertEqual( info.service['service']['@id'], 'Ylogout' )
     # now add all, check we have all @ids in service description
     info = IIIFInfo()
     auth = IIIFAuth()
     auth.login_uri = 'Zlogin'
     auth.logout_uri = 'Zlogout'
     auth.client_id_uri = 'Zclient'
     auth.access_token_uri = 'Ztoken'
     auth.add_services(info)
     self.assertEqual( info.service['@id'], 'Zlogin' )
     self.assertEqual( len(info.service['service']), 3 )
     ids = set([ e['@id'] for e in info.service['service'] ])
     self.assertEqual( ids, set([auth.logout_uri,auth.client_id_uri,auth.access_token_uri]) )
Exemple #4
0
 def test06_client_id_service_description(self):
     """Test client_id_service_description."""
     auth = IIIFAuth()
     auth.client_id_uri = 'id3'
     auth.profile_base = 'http://pb3/'
     lsd = auth.client_id_service_description()
     self.assertEqual(lsd['@id'], 'id3')
     self.assertEqual(lsd['profile'], 'http://pb3/clientId')
 def test04_login_and_client_id(self):
     info = IIIFInfo(identifier="http://example.com/i1", api_version='2.1')
     auth = IIIFAuth()
     auth.login_uri = 'http://example.com/login'
     auth.client_id_uri = 'http://example.com/client_id'
     auth.add_services(info) 
     self.assertEqual( info.service['@id'], "http://example.com/login" )
     self.assertEqual( info.service['label'], "Login to image server" )
     self.assertEqual( info.service['profile'], "http://iiif.io/api/auth/0/login" )
     svcs = info.service['service']
     self.assertEqual( svcs['@id'], "http://example.com/client_id" )
     self.assertEqual( svcs['profile'], "http://iiif.io/api/auth/0/clientId" )
Exemple #6
0
 def test04_login_and_client_id(self):
     """Test login and client id."""
     info = IIIFInfo(identifier="http://example.com/i1", api_version='2.1')
     auth = IIIFAuth()
     auth.login_uri = 'http://example.com/login'
     auth.client_id_uri = 'http://example.com/client_id'
     auth.add_services(info)
     self.assertEqual(info.service['@id'], "http://example.com/login")
     self.assertEqual(info.service['label'], "Login to image server")
     self.assertEqual(info.service['profile'],
                      "http://iiif.io/api/auth/1/login")
     svcs = info.service['service']
     self.assertEqual(svcs['@id'], "http://example.com/client_id")
     self.assertEqual(svcs['profile'], "http://iiif.io/api/auth/1/clientId")
 def test06_full_set(self):
     info = IIIFInfo(identifier="http://example.com/i1", api_version='2.1')
     auth = IIIFAuth()
     auth.name = "Whizzo!"
     auth.logout_uri = 'http://example.com/logout'
     auth.access_token_uri = 'http://example.com/token'
     auth.client_id_uri = 'http://example.com/clientId'
     auth.login_uri = 'http://example.com/login'
     auth.add_services(info) 
     self.assertEqual( info.service['@id'], "http://example.com/login" )
     self.assertEqual( info.service['label'], "Login to Whizzo!" )
     svcs = info.service['service']
     self.assertEqual( svcs[0]['@id'], "http://example.com/logout" )
     self.assertEqual( svcs[1]['@id'], "http://example.com/clientId" )
     self.assertEqual( svcs[2]['@id'], "http://example.com/token" )
Exemple #8
0
 def test06_full_set(self):
     """Test full set of auth services."""
     info = IIIFInfo(identifier="http://example.com/i1", api_version='2.1')
     auth = IIIFAuth()
     auth.name = "Whizzo!"
     auth.logout_uri = 'http://example.com/logout'
     auth.access_token_uri = 'http://example.com/token'
     auth.client_id_uri = 'http://example.com/clientId'
     auth.login_uri = 'http://example.com/login'
     auth.add_services(info)
     self.assertEqual(info.service['@id'], "http://example.com/login")
     self.assertEqual(info.service['label'], "Login to Whizzo!")
     svcs = info.service['service']
     self.assertEqual(svcs[0]['@id'], "http://example.com/logout")
     self.assertEqual(svcs[1]['@id'], "http://example.com/clientId")
     self.assertEqual(svcs[2]['@id'], "http://example.com/token")