-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix request handle un registration #63
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
package com.walmartlabs.electrode.reactnative.bridge; | ||
|
||
import android.support.annotation.NonNull; | ||
import android.support.annotation.Nullable; | ||
|
||
import com.walmartlabs.electrode.reactnative.sample.api.PersonApi; | ||
|
||
import org.junit.Test; | ||
|
||
import java.util.concurrent.CountDownLatch; | ||
|
||
import static junit.framework.TestCase.assertEquals; | ||
import static junit.framework.TestCase.assertNotNull; | ||
import static junit.framework.TestCase.assertSame; | ||
import static junit.framework.TestCase.fail; | ||
|
||
public class RequestHandleTests extends BaseBridgeTestCase { | ||
|
||
@Test | ||
public void testRequestHandlerRemoval() { | ||
final CountDownLatch countDownLatch = new CountDownLatch(3); | ||
final String requestName = "testRequestHandlerRemoval"; | ||
|
||
RequestHandlerHandle requestHandle = new RequestHandlerProcessor<>(requestName, None.class, None.class, new ElectrodeBridgeRequestHandler<None, None>() { | ||
@Override | ||
public void onRequest(@Nullable None payload, @NonNull ElectrodeBridgeResponseListener<None> responseListener) { | ||
assertSame(None.NONE, payload); | ||
responseListener.onSuccess(null); | ||
countDownLatch.countDown(); | ||
} | ||
}).execute(); | ||
|
||
|
||
new RequestProcessor<None, None>(requestName, null, None.class, new ElectrodeBridgeResponseListener<None>() { | ||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
fail(); | ||
} | ||
|
||
@Override | ||
public void onSuccess(@Nullable None responseData) { | ||
assertSame(None.NONE, responseData); | ||
countDownLatch.countDown(); | ||
} | ||
}).execute(); | ||
|
||
requestHandle.unregister(); | ||
|
||
new RequestProcessor<None, None>(requestName, null, None.class, new ElectrodeBridgeResponseListener<None>() { | ||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
failureMessage.getMessage(); | ||
countDownLatch.countDown(); | ||
} | ||
|
||
@Override | ||
public void onSuccess(@Nullable None responseData) { | ||
fail(); | ||
} | ||
}).execute(); | ||
|
||
waitForCountDownToFinishOrFail(countDownLatch); | ||
} | ||
|
||
@Test | ||
public void testRequestHandlerRemovalWithApi() { | ||
final CountDownLatch countDownLatch = new CountDownLatch(3); | ||
final int RESULT_AGE = 10; | ||
|
||
RequestHandlerHandle handlerHandle = PersonApi.requests().registerGetAgeRequestHandler(new ElectrodeBridgeRequestHandler<String, Integer>() { | ||
@Override | ||
public void onRequest(@Nullable String payload, @NonNull ElectrodeBridgeResponseListener<Integer> responseListener) { | ||
responseListener.onSuccess(RESULT_AGE); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
|
||
PersonApi.requests().getAge("user", new ElectrodeBridgeResponseListener<Integer>() { | ||
@Override | ||
public void onSuccess(@Nullable Integer responseData) { | ||
assertNotNull(responseData); | ||
assertEquals(RESULT_AGE, responseData.intValue()); | ||
countDownLatch.countDown(); | ||
} | ||
|
||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
fail(); | ||
} | ||
}); | ||
|
||
handlerHandle.unregister(); | ||
|
||
PersonApi.requests().getAge("user", new ElectrodeBridgeResponseListener<Integer>() { | ||
@Override | ||
public void onSuccess(@Nullable Integer responseData) { | ||
fail(); | ||
} | ||
|
||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
assertNotNull(failureMessage); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
waitForCountDownToFinishOrFail(countDownLatch); | ||
} | ||
|
||
@Test | ||
public void testMultipleRequestHandlers() { | ||
final CountDownLatch countDownLatch = new CountDownLatch(4); | ||
final int RESULT_AGE_FIRST = 10; | ||
final int RESULT_AGE_SECOND = 20; | ||
final int RESULT_AGE_THIRD = 30; | ||
|
||
RequestHandlerHandle handlerHandle = PersonApi.requests().registerGetAgeRequestHandler(new ElectrodeBridgeRequestHandler<String, Integer>() { | ||
@Override | ||
public void onRequest(@Nullable String payload, @NonNull ElectrodeBridgeResponseListener<Integer> responseListener) { | ||
responseListener.onSuccess(RESULT_AGE_FIRST); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
|
||
RequestHandlerHandle handlerHandle1 = PersonApi.requests().registerGetAgeRequestHandler(new ElectrodeBridgeRequestHandler<String, Integer>() { | ||
@Override | ||
public void onRequest(@Nullable String payload, @NonNull ElectrodeBridgeResponseListener<Integer> responseListener) { | ||
responseListener.onSuccess(RESULT_AGE_SECOND); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
|
||
RequestHandlerHandle handlerHandle2 = PersonApi.requests().registerGetAgeRequestHandler(new ElectrodeBridgeRequestHandler<String, Integer>() { | ||
@Override | ||
public void onRequest(@Nullable String payload, @NonNull ElectrodeBridgeResponseListener<Integer> responseListener) { | ||
responseListener.onSuccess(RESULT_AGE_THIRD); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
|
||
PersonApi.requests().getAge("user", new ElectrodeBridgeResponseListener<Integer>() { | ||
@Override | ||
public void onSuccess(@Nullable Integer responseData) { | ||
assertNotNull(responseData); | ||
assertEquals(RESULT_AGE_THIRD, responseData.intValue()); | ||
countDownLatch.countDown(); | ||
} | ||
|
||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
fail(); | ||
} | ||
}); | ||
|
||
handlerHandle.unregister(); | ||
handlerHandle1.unregister(); | ||
|
||
PersonApi.requests().getAge("user", new ElectrodeBridgeResponseListener<Integer>() { | ||
@Override | ||
public void onSuccess(@Nullable Integer responseData) { | ||
assertNotNull(responseData); | ||
assertEquals(RESULT_AGE_THIRD, responseData.intValue()); | ||
countDownLatch.countDown(); | ||
} | ||
|
||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
fail(); | ||
} | ||
}); | ||
|
||
handlerHandle2.unregister(); | ||
|
||
PersonApi.requests().getAge("user", new ElectrodeBridgeResponseListener<Integer>() { | ||
@Override | ||
public void onSuccess(@Nullable Integer responseData) { | ||
fail(); | ||
} | ||
|
||
@Override | ||
public void onFailure(@NonNull FailureMessage failureMessage) { | ||
assertNotNull(failureMessage); | ||
countDownLatch.countDown(); | ||
} | ||
}); | ||
|
||
waitForCountDownToFinishOrFail(countDownLatch); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,15 +91,10 @@ public void onSuccess(TResp obj) { | |
|
||
@Override | ||
public boolean unregister() { | ||
Logger.d(TAG, "Removing registered request handler %s with id %s", handler, id); | ||
ElectrodeBridgeRequestHandler removedHandler = ElectrodeBridgeHolder.unregisterRequestHandler(id); | ||
if (handler != null && intermediateRequestHandler == removedHandler) { | ||
intermediateRequestHandler = null; | ||
handler = null; | ||
return true; | ||
} else { | ||
Logger.w(TAG, "Not able to unregister a request handler. This is not normal as the request handle should have proper reference of the registered handler. "); | ||
} | ||
return false; | ||
Logger.w(TAG, "Removing registered request handler %s with id %s", handler, id); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this now an unexpected ("warning") case, or can it stay "debug"? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oops. Good catch!. typo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In fact, I will clean up this logic now. |
||
ElectrodeBridgeHolder.unregisterRequestHandler(id); | ||
intermediateRequestHandler = null; | ||
handler = null; | ||
return true; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,6 @@ public interface RequestRegistrar<T> { | |
* @param name | ||
* @return {@link UUID} of the request handler | ||
*/ | ||
@NonNull | ||
@Nullable | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically, this change is breaking and would require a new major version - So question: Is this required or can you keep it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was technically not used anywhere till now, So it should be okay to change the signature. I will update the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, if you look at the old implementation it was done incorrectly. A There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense 👍 |
||
UUID getRequestHandlerId(@NonNull String name); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the class name be
RequestHandlerTests
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we can only have one request handler at any given point of time.
Previously, the
mRequestNameByUUID
map was not updated when a new request handler is registered. Due to this, when someone callsunregisterRequestHandler
on an oldUUID
the implementation was removing the current one.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RequestHandle
is the return type that stores the ID, hence kept this name. Guess it can be either.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK.. Just keep it. We can consider some naming refactoring/simplification for v2.