mdedetrich commented on code in PR #12524:
URL: https://github.com/apache/kafka/pull/12524#discussion_r975478357
##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/ProcessorStateManagerTest.java:
##########
@@ -310,48 +301,30 @@ public void shouldRestoreTimestampedStoreWithConverter() {
@Test
public void shouldUnregisterChangelogsDuringClose() {
final ProcessorStateManager stateMgr =
getStateManager(Task.TaskType.ACTIVE);
- reset(storeMetadata);
- final StateStore store = EasyMock.createMock(StateStore.class);
-
expect(storeMetadata.changelogPartition()).andStubReturn(persistentStorePartition);
- expect(storeMetadata.store()).andStubReturn(store);
- expect(store.name()).andStubReturn(persistentStoreName);
-
- context.uninitialize();
- store.init((StateStoreContext) context, store);
- replay(storeMetadata, context, store);
+ final StateStore store = mock(StateStore.class);
+ when(store.name()).thenReturn(persistentStoreName);
stateMgr.registerStateStores(singletonList(store), context);
- verify(context, store);
+ verify(context).uninitialize();
+ verify(store).init((StateStoreContext) context, store);
stateMgr.registerStore(store, noopStateRestoreCallback, null);
assertTrue(changelogReader.isPartitionRegistered(persistentStorePartition));
- reset(store);
- expect(store.name()).andStubReturn(persistentStoreName);
- store.close();
Review Comment:
So if I use the `Mockito.reset` to simulate what the original `EasyMock` was
doing, i.e.
```java
reset(store);
when(store.name()).thenReturn(persistentStoreName);
store.close();
```
The the test passes. Note that you told me to remove this beforehand (see
https://github.com/apache/kafka/pull/12524#discussion_r968477415)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]