2018-01-31 22:53:11 -05:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage (C) 2018 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2018-02-13 01:30:02 -05:00
|
|
|
import reducer from "../reducer"
|
|
|
|
import * as actions from "../actions"
|
2018-01-31 22:53:11 -05:00
|
|
|
|
|
|
|
describe("buckets reducer", () => {
|
|
|
|
it("should return the initial state", () => {
|
2018-02-09 21:34:14 -05:00
|
|
|
const initialState = reducer(undefined, {})
|
|
|
|
expect(initialState).toEqual({
|
2018-01-31 22:53:11 -05:00
|
|
|
list: [],
|
|
|
|
filter: "",
|
|
|
|
currentBucket: ""
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-02-12 16:27:52 -05:00
|
|
|
it("should handle SET_LIST", () => {
|
2018-02-09 21:34:14 -05:00
|
|
|
const newState = reducer(undefined, {
|
|
|
|
type: actions.SET_LIST,
|
|
|
|
buckets: ["bk1", "bk2"]
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
2018-02-09 21:34:14 -05:00
|
|
|
expect(newState.list).toEqual(["bk1", "bk2"])
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
|
|
|
|
2018-02-12 16:27:52 -05:00
|
|
|
it("should handle SET_FILTER", () => {
|
2018-02-09 21:34:14 -05:00
|
|
|
const newState = reducer(undefined, {
|
|
|
|
type: actions.SET_FILTER,
|
|
|
|
filter: "test"
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
2018-02-09 21:34:14 -05:00
|
|
|
expect(newState.filter).toEqual("test")
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
|
|
|
|
2018-02-12 16:27:52 -05:00
|
|
|
it("should handle SET_CURRENT_BUCKET", () => {
|
2018-02-09 21:34:14 -05:00
|
|
|
const newState = reducer(undefined, {
|
|
|
|
type: actions.SET_CURRENT_BUCKET,
|
|
|
|
bucket: "test"
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
2018-02-09 21:34:14 -05:00
|
|
|
expect(newState.currentBucket).toEqual("test")
|
2018-01-31 22:53:11 -05:00
|
|
|
})
|
|
|
|
})
|