Refactor new code
[arvados-workbench2.git] / src / store / collections / creator / collection-creator-reducer.test.ts
index 0da18c81ef319b28b81674b68fb7feff423f5d43..5aa9dcfe5a86f6c6cc51f6bf987f1ad42bacb6d0 100644 (file)
@@ -2,44 +2,32 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { collectionCreationReducer } from "./collection-creator-reducer";
+import { collectionCreatorReducer } from "./collection-creator-reducer";
 import { collectionCreateActions } from "./collection-creator-action";
 
 describe('collection-reducer', () => {
 
     it('should open collection creator dialog', () => {
-        const initialState = {
-            creator: { opened: false, ownerUuid: "" }
-        };
-        const collection = {
-            creator: { opened: true, ownerUuid: "" },
-        };
-
-        const state = collectionCreationReducer(initialState, collectionCreateActions.OPEN_COLLECTION_CREATOR(initialState.creator));
+        const initialState = { opened: false, ownerUuid: "" };
+        const collection = { opened: true, ownerUuid: "" };
+
+        const state = collectionCreatorReducer(initialState, collectionCreateActions.OPEN_COLLECTION_CREATOR(initialState));
         expect(state).toEqual(collection);
     });
 
     it('should close collection creator dialog', () => {
-        const initialState = {
-            creator: { opened: true, ownerUuid: "" }
-        };
-        const collection = {
-            creator: { opened: false, ownerUuid: "" },
-        };
-
-        const state = collectionCreationReducer(initialState, collectionCreateActions.CLOSE_COLLECTION_CREATOR());
+        const initialState = { opened: true, ownerUuid: "" };
+        const collection = { opened: false, ownerUuid: "" };
+
+        const state = collectionCreatorReducer(initialState, collectionCreateActions.CLOSE_COLLECTION_CREATOR());
         expect(state).toEqual(collection);
     });
 
     it('should reset collection creator dialog props', () => {
-        const initialState = {
-            creator: { opened: true, ownerUuid: "test" }
-        };
-        const collection = {
-            creator: { opened: false, ownerUuid: "" },
-        };
-
-        const state = collectionCreationReducer(initialState, collectionCreateActions.CREATE_COLLECTION_SUCCESS());
+        const initialState = { opened: true, ownerUuid: "test" };
+        const collection = { opened: false, ownerUuid: "" };
+
+        const state = collectionCreatorReducer(initialState, collectionCreateActions.CREATE_COLLECTION_SUCCESS());
         expect(state).toEqual(collection);
     });
-});
\ No newline at end of file
+});