Ejemplo n.º 1
0
 def test_oauth2_auth_url__with_client_id_and_redirect_uri(self):
     auth_url = oauth2_auth_url(client_id='abcd1234',
                                redirect_uri='http://127.0.0.1:5000/auth/')
     assert auth_url == (
         'https://www.openhumans.org/direct-sharing/projects/'
         'oauth2/authorize/?client_id=abcd1234&response_type=code'
         '&redirect_uri=http%3A%2F%2F127.0.0.1%3A5000%2Fauth%2F')
Ejemplo n.º 2
0
 def test_oauth2_auth_url__with_client_id(self):
     auth_url = oauth2_auth_url(client_id='abcd1234')
     assert auth_url == (
         'https://www.openhumans.org/direct-sharing/projects/'
         'oauth2/authorize/?client_id=abcd1234&response_type=code')
Ejemplo n.º 3
0
 def test_oauth2_auth_url__no_client_id(self):
     with pytest.raises(SettingsError):
         oauth2_auth_url()