Search in sources :

Example 1 with ErrorEnvelope

use of com.kickstarter.services.apiresponses.ErrorEnvelope in project android-oss by kickstarter.

the class ApiExceptionFactory method badRequestException.

@NonNull
public static ApiException badRequestException() {
    final ErrorEnvelope envelope = ErrorEnvelope.builder().errorMessages(Collections.singletonList("bad request")).httpCode(400).build();
    final ResponseBody body = ResponseBody.create(null, "");
    final retrofit2.Response<Observable<User>> response = retrofit2.Response.error(400, body);
    return new ApiException(envelope, response);
}
Also used : ErrorEnvelope(com.kickstarter.services.apiresponses.ErrorEnvelope) Observable(rx.Observable) ResponseBody(okhttp3.ResponseBody) ApiException(com.kickstarter.services.ApiException) NonNull(android.support.annotation.NonNull)

Example 2 with ErrorEnvelope

use of com.kickstarter.services.apiresponses.ErrorEnvelope in project android-oss by kickstarter.

the class ApiExceptionFactory method tfaRequired.

@NonNull
public static ApiException tfaRequired() {
    final ErrorEnvelope envelope = ErrorEnvelope.builder().ksrCode(ErrorEnvelope.TFA_REQUIRED).httpCode(403).errorMessages(Collections.singletonList("Two-factor authentication required.")).build();
    final ResponseBody body = ResponseBody.create(null, new Gson().toJson(envelope));
    final retrofit2.Response<Observable<User>> response = retrofit2.Response.error(envelope.httpCode(), body);
    return new ApiException(envelope, response);
}
Also used : ErrorEnvelope(com.kickstarter.services.apiresponses.ErrorEnvelope) Gson(com.google.gson.Gson) Observable(rx.Observable) ResponseBody(okhttp3.ResponseBody) ApiException(com.kickstarter.services.ApiException) NonNull(android.support.annotation.NonNull)

Example 3 with ErrorEnvelope

use of com.kickstarter.services.apiresponses.ErrorEnvelope in project android-oss by kickstarter.

the class ApiExceptionFactory method tfaFailed.

@NonNull
public static ApiException tfaFailed() {
    final ErrorEnvelope envelope = ErrorEnvelope.builder().ksrCode(ErrorEnvelope.TFA_FAILED).httpCode(400).build();
    final ResponseBody body = ResponseBody.create(null, new Gson().toJson(envelope));
    final retrofit2.Response<Observable<User>> response = retrofit2.Response.error(envelope.httpCode(), body);
    return new ApiException(envelope, response);
}
Also used : ErrorEnvelope(com.kickstarter.services.apiresponses.ErrorEnvelope) Gson(com.google.gson.Gson) Observable(rx.Observable) ResponseBody(okhttp3.ResponseBody) ApiException(com.kickstarter.services.ApiException) NonNull(android.support.annotation.NonNull)

Example 4 with ErrorEnvelope

use of com.kickstarter.services.apiresponses.ErrorEnvelope in project android-oss by kickstarter.

the class ApiExceptionFactory method invalidLoginException.

@NonNull
public static ApiException invalidLoginException() {
    final ErrorEnvelope envelope = ErrorEnvelope.builder().errorMessages(Collections.singletonList("Invalid login.")).httpCode(401).ksrCode(ErrorEnvelope.INVALID_XAUTH_LOGIN).build();
    final ResponseBody body = ResponseBody.create(null, new Gson().toJson(envelope));
    final retrofit2.Response<Observable<User>> response = retrofit2.Response.error(envelope.httpCode(), body);
    return new ApiException(envelope, response);
}
Also used : ErrorEnvelope(com.kickstarter.services.apiresponses.ErrorEnvelope) Gson(com.google.gson.Gson) Observable(rx.Observable) ResponseBody(okhttp3.ResponseBody) ApiException(com.kickstarter.services.ApiException) NonNull(androidx.annotation.NonNull)

Example 5 with ErrorEnvelope

use of com.kickstarter.services.apiresponses.ErrorEnvelope in project android-oss by kickstarter.

the class DiscoveryViewModelTest method testShowSnackBar_whenIntentFromDeepLinkSuccessResponse_showErrorMessage.

@Test
public void testShowSnackBar_whenIntentFromDeepLinkSuccessResponse_showErrorMessage() {
    final String url = "https://*.kickstarter.com/profile/verify_email";
    final Intent intentWithUrl = new Intent().setData(Uri.parse(url));
    final ErrorEnvelope errorEnvelope = ErrorEnvelope.builder().httpCode(403).errorMessages(Collections.singletonList("expired")).build();
    final ApiException apiException = ApiExceptionFactory.apiError(errorEnvelope);
    final MockApiClient mockApiClient = new MockApiClient() {

        @NonNull
        @Override
        public Observable<EmailVerificationEnvelope> verifyEmail(@NonNull final String token) {
            return Observable.error(apiException);
        }
    };
    final Environment mockedClientEnvironment = environment().toBuilder().apiClient(mockApiClient).build();
    this.vm = new DiscoveryViewModel.ViewModel(mockedClientEnvironment);
    this.vm.getOutputs().showSuccessMessage().subscribe(this.showSuccessMessage);
    this.vm.getOutputs().showErrorMessage().subscribe(this.showErrorMessage);
    this.vm.intent(intentWithUrl);
    this.showSuccessMessage.assertNoValues();
    this.showErrorMessage.assertValue("expired");
}
Also used : EmailVerificationEnvelope(com.kickstarter.services.apiresponses.EmailVerificationEnvelope) MockApiClient(com.kickstarter.mock.services.MockApiClient) NonNull(androidx.annotation.NonNull) ErrorEnvelope(com.kickstarter.services.apiresponses.ErrorEnvelope) Environment(com.kickstarter.libs.Environment) Intent(android.content.Intent) ApiException(com.kickstarter.services.ApiException) Test(org.junit.Test)

Aggregations

ApiException (com.kickstarter.services.ApiException)10 ErrorEnvelope (com.kickstarter.services.apiresponses.ErrorEnvelope)10 ResponseBody (okhttp3.ResponseBody)8 Observable (rx.Observable)8 Gson (com.google.gson.Gson)7 NonNull (androidx.annotation.NonNull)6 NonNull (android.support.annotation.NonNull)4 Intent (android.content.Intent)1 Environment (com.kickstarter.libs.Environment)1 MockApiClient (com.kickstarter.mock.services.MockApiClient)1 ResponseException (com.kickstarter.services.ResponseException)1 EmailVerificationEnvelope (com.kickstarter.services.apiresponses.EmailVerificationEnvelope)1 IOException (java.io.IOException)1 Test (org.junit.Test)1 Response (retrofit2.Response)1 Subscriber (rx.Subscriber)1