use of com.okta.oidc.util.MockEndPoint in project okta-oidc-android by okta.
the class OktaResultFragmentTest method setUp.
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
mEndPoint = new MockEndPoint();
String url = mEndPoint.getUrl();
mConfig = TestValues.getConfigWithUrl(url);
mProviderConfig = TestValues.getProviderConfiguration(url);
mActivity = Robolectric.buildActivity(FragmentActivity.class).setup().get();
}
use of com.okta.oidc.util.MockEndPoint in project okta-oidc-android by okta.
the class BaseRequestTest method setUp.
@Before
public void setUp() throws Exception {
mEndPoint = new MockEndPoint();
mRequest = new BaseRequest<String, AuthorizationException>() {
@Override
public String executeRequest(OktaHttpClient client) throws AuthorizationException {
return null;
}
};
mClientFactory = new HttpClientFactory();
mClientFactory.setClientType(mClientType);
mHttpClient = mClientFactory.build();
}
use of com.okta.oidc.util.MockEndPoint in project okta-oidc-android by okta.
the class NativeAuthorizeRequestTest method setUp.
@Before
public void setUp() throws Exception {
mEndPoint = new MockEndPoint();
String url = mEndPoint.getUrl();
OIDCConfig config = TestValues.getConfigWithUrl(url);
mProviderConfig = getProviderConfiguration(url);
mRequest = TestValues.getNativeLogInRequest(config, SESSION_TOKEN, mProviderConfig);
mClientFactory = new HttpClientFactory();
mClientFactory.setClientType(mClientType);
mHttpClient = mClientFactory.build();
}
use of com.okta.oidc.util.MockEndPoint in project okta-oidc-android by okta.
the class RefreshTokenRequestTest method setUp.
@Before
public void setUp() throws Exception {
mEndPoint = new MockEndPoint();
String url = mEndPoint.getUrl();
mConfig = TestValues.getConfigWithUrl(url);
mTokenResponse = TokenResponse.RESTORE.restore(TOKEN_RESPONSE);
mProviderConfig = TestValues.getProviderConfiguration(url);
mRequest = TestValues.getRefreshRequest(mConfig, mTokenResponse, mProviderConfig);
mClientFactory = new HttpClientFactory();
mClientFactory.setClientType(mClientType);
mHttpClient = mClientFactory.build();
}
use of com.okta.oidc.util.MockEndPoint in project okta-oidc-android by okta.
the class AuthorizedRequestTest method setUp.
@Before
public void setUp() throws Exception {
mEndPoint = new MockEndPoint();
String url = mEndPoint.getUrl();
OIDCConfig config = TestValues.getConfigWithUrl(url);
mProviderConfig = TestValues.getProviderConfiguration(url);
mTokenResponse = new Gson().fromJson(JsonStrings.TOKEN_RESPONSE, TokenResponse.class);
mClientFactory = new HttpClientFactory();
mClientFactory.setClientType(mClientType);
mHttpClient = mClientFactory.build();
mRequest = HttpRequestBuilder.newAuthorizedRequest().uri(Uri.parse(mEndPoint.getUrl())).httpRequestMethod(ConnectionParameters.RequestMethod.POST).config(config).providerConfiguration(mProviderConfig).tokenResponse(mTokenResponse).createRequest();
}
Aggregations