123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587 |
- import { mount } from './support/helpers'
- import Vuex, { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from '../../src/index'
- describe('Helpers', () => {
- it('mapState (array)', () => {
- const store = new Vuex.Store({
- state: {
- a: 1
- }
- })
- const vm = mount(store, {
- computed: mapState(['a'])
- })
- expect(vm.a).toBe(1)
- store.state.a++
- expect(vm.a).toBe(2)
- })
- it('mapState (object)', () => {
- const store = new Vuex.Store({
- state: {
- a: 1
- },
- getters: {
- b: () => 2
- }
- })
- const vm = mount(store, {
- computed: mapState({
- a: (state, getters) => {
- return state.a + getters.b
- }
- })
- })
- expect(vm.a).toBe(3)
- store.state.a++
- expect(vm.a).toBe(4)
- })
- it('mapState (with namespace)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { a: 1 },
- getters: {
- b: state => state.a + 1
- }
- }
- }
- })
- const vm = mount(store, {
- computed: mapState('foo', {
- a: (state, getters) => {
- return state.a + getters.b
- }
- })
- })
- expect(vm.a).toBe(3)
- store.state.foo.a++
- expect(vm.a).toBe(5)
- store.replaceState({
- foo: { a: 3 }
- })
- expect(vm.a).toBe(7)
- })
- // #708
- it('mapState (with namespace and a nested module)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { a: 1 },
- modules: {
- bar: {
- state: { b: 2 }
- }
- }
- }
- }
- })
- const vm = mount(store, {
- computed: mapState('foo', {
- value: state => state
- })
- })
- expect(vm.value.a).toBe(1)
- expect(vm.value.bar.b).toBe(2)
- expect(vm.value.b).toBeUndefined()
- })
- it('mapState (with undefined states)', () => {
- spyOn(console, 'error')
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { a: 1 }
- }
- }
- })
- const vm = mount(store, {
- computed: mapState('foo')
- })
- expect(vm.a).toBeUndefined()
- expect(console.error).toHaveBeenCalledWith('[vuex] mapState: mapper parameter must be either an Array or an Object')
- })
- it('mapMutations (array)', () => {
- const store = new Vuex.Store({
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- }
- })
- const vm = mount(store, {
- methods: mapMutations(['inc', 'dec'])
- })
- vm.inc()
- expect(store.state.count).toBe(1)
- vm.dec()
- expect(store.state.count).toBe(0)
- })
- it('mapMutations (object)', () => {
- const store = new Vuex.Store({
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- }
- })
- const vm = mount(store, {
- methods: mapMutations({
- plus: 'inc',
- minus: 'dec'
- })
- })
- vm.plus()
- expect(store.state.count).toBe(1)
- vm.minus()
- expect(store.state.count).toBe(0)
- })
- it('mapMutations (function)', () => {
- const store = new Vuex.Store({
- state: { count: 0 },
- mutations: {
- inc (state, amount) {
- state.count += amount
- }
- }
- })
- const vm = mount(store, {
- methods: mapMutations({
- plus (commit, amount) {
- commit('inc', amount + 1)
- }
- })
- })
- vm.plus(42)
- expect(store.state.count).toBe(43)
- })
- it('mapMutations (with namespace)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- }
- }
- }
- })
- const vm = mount(store, {
- methods: mapMutations('foo', {
- plus: 'inc',
- minus: 'dec'
- })
- })
- vm.plus()
- expect(store.state.foo.count).toBe(1)
- vm.minus()
- expect(store.state.foo.count).toBe(0)
- })
- it('mapMutations (function with namepsace)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc (state, amount) {
- state.count += amount
- }
- }
- }
- }
- })
- const vm = mount(store, {
- methods: mapMutations('foo', {
- plus (commit, amount) {
- commit('inc', amount + 1)
- }
- })
- })
- vm.plus(42)
- expect(store.state.foo.count).toBe(43)
- })
- it('mapMutations (with undefined mutations)', () => {
- spyOn(console, 'error')
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- }
- }
- }
- })
- const vm = mount(store, {
- methods: mapMutations('foo')
- })
- expect(vm.inc).toBeUndefined()
- expect(vm.dec).toBeUndefined()
- expect(console.error).toHaveBeenCalledWith('[vuex] mapMutations: mapper parameter must be either an Array or an Object')
- })
- it('mapGetters (array)', () => {
- const store = new Vuex.Store({
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- getters: {
- hasAny: ({ count }) => count > 0,
- negative: ({ count }) => count < 0
- }
- })
- const vm = mount(store, {
- computed: mapGetters(['hasAny', 'negative'])
- })
- expect(vm.hasAny).toBe(false)
- expect(vm.negative).toBe(false)
- store.commit('inc')
- expect(vm.hasAny).toBe(true)
- expect(vm.negative).toBe(false)
- store.commit('dec')
- store.commit('dec')
- expect(vm.hasAny).toBe(false)
- expect(vm.negative).toBe(true)
- })
- it('mapGetters (object)', () => {
- const store = new Vuex.Store({
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- getters: {
- hasAny: ({ count }) => count > 0,
- negative: ({ count }) => count < 0
- }
- })
- const vm = mount(store, {
- computed: mapGetters({
- a: 'hasAny',
- b: 'negative'
- })
- })
- expect(vm.a).toBe(false)
- expect(vm.b).toBe(false)
- store.commit('inc')
- expect(vm.a).toBe(true)
- expect(vm.b).toBe(false)
- store.commit('dec')
- store.commit('dec')
- expect(vm.a).toBe(false)
- expect(vm.b).toBe(true)
- })
- it('mapGetters (with namespace)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- getters: {
- hasAny: ({ count }) => count > 0,
- negative: ({ count }) => count < 0
- }
- }
- }
- })
- const vm = mount(store, {
- computed: mapGetters('foo', {
- a: 'hasAny',
- b: 'negative'
- })
- })
- expect(vm.a).toBe(false)
- expect(vm.b).toBe(false)
- store.commit('foo/inc')
- expect(vm.a).toBe(true)
- expect(vm.b).toBe(false)
- store.commit('foo/dec')
- store.commit('foo/dec')
- expect(vm.a).toBe(false)
- expect(vm.b).toBe(true)
- })
- it('mapGetters (with namespace and nested module)', () => {
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- modules: {
- bar: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- getters: {
- hasAny: ({ count }) => count > 0,
- negative: ({ count }) => count < 0
- }
- },
- cat: {
- state: { count: 9 },
- getters: {
- count: ({ count }) => count
- }
- }
- }
- }
- }
- })
- const vm = mount(store, {
- computed: {
- ...mapGetters('foo/bar', [
- 'hasAny',
- 'negative'
- ]),
- ...mapGetters('foo', [
- 'count'
- ])
- }
- })
- expect(vm.hasAny).toBe(false)
- expect(vm.negative).toBe(false)
- store.commit('foo/bar/inc')
- expect(vm.hasAny).toBe(true)
- expect(vm.negative).toBe(false)
- store.commit('foo/bar/dec')
- store.commit('foo/bar/dec')
- expect(vm.hasAny).toBe(false)
- expect(vm.negative).toBe(true)
- expect(vm.count).toBe(9)
- })
- it('mapGetters (with undefined getters)', () => {
- spyOn(console, 'error')
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- getters: {
- hasAny: ({ count }) => count > 0,
- negative: ({ count }) => count < 0
- }
- }
- }
- })
- const vm = mount(store, {
- computed: mapGetters('foo')
- })
- expect(vm.a).toBeUndefined()
- expect(vm.b).toBeUndefined()
- expect(console.error).toHaveBeenCalledWith('[vuex] mapGetters: mapper parameter must be either an Array or an Object')
- })
- it('mapActions (array)', () => {
- const a = jasmine.createSpy()
- const b = jasmine.createSpy()
- const store = new Vuex.Store({
- actions: {
- a,
- b
- }
- })
- const vm = mount(store, {
- methods: mapActions(['a', 'b'])
- })
- vm.a()
- expect(a).toHaveBeenCalled()
- expect(b).not.toHaveBeenCalled()
- vm.b()
- expect(b).toHaveBeenCalled()
- })
- it('mapActions (object)', () => {
- const a = jasmine.createSpy()
- const b = jasmine.createSpy()
- const store = new Vuex.Store({
- actions: {
- a,
- b
- }
- })
- const vm = mount(store, {
- methods: mapActions({
- foo: 'a',
- bar: 'b'
- })
- })
- vm.foo()
- expect(a).toHaveBeenCalled()
- expect(b).not.toHaveBeenCalled()
- vm.bar()
- expect(b).toHaveBeenCalled()
- })
- it('mapActions (function)', () => {
- const a = jasmine.createSpy()
- const store = new Vuex.Store({
- actions: { a }
- })
- const vm = mount(store, {
- methods: mapActions({
- foo (dispatch, arg) {
- dispatch('a', arg + 'bar')
- }
- })
- })
- vm.foo('foo')
- expect(a.calls.argsFor(0)[1]).toBe('foobar')
- })
- it('mapActions (with namespace)', () => {
- const a = jasmine.createSpy()
- const b = jasmine.createSpy()
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- actions: {
- a,
- b
- }
- }
- }
- })
- const vm = mount(store, {
- methods: mapActions('foo/', {
- foo: 'a',
- bar: 'b'
- })
- })
- vm.foo()
- expect(a).toHaveBeenCalled()
- expect(b).not.toHaveBeenCalled()
- vm.bar()
- expect(b).toHaveBeenCalled()
- })
- it('mapActions (function with namespace)', () => {
- const a = jasmine.createSpy()
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- actions: { a }
- }
- }
- })
- const vm = mount(store, {
- methods: mapActions('foo/', {
- foo (dispatch, arg) {
- dispatch('a', arg + 'bar')
- }
- })
- })
- vm.foo('foo')
- expect(a.calls.argsFor(0)[1]).toBe('foobar')
- })
- it('mapActions (with undefined actions)', () => {
- spyOn(console, 'error')
- const a = jasmine.createSpy()
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- actions: {
- a
- }
- }
- }
- })
- const vm = mount(store, {
- methods: mapActions('foo/')
- })
- expect(vm.a).toBeUndefined()
- expect(a).not.toHaveBeenCalled()
- expect(console.error).toHaveBeenCalledWith('[vuex] mapActions: mapper parameter must be either an Array or an Object')
- })
- it('createNamespacedHelpers', () => {
- const actionA = jasmine.createSpy()
- const actionB = jasmine.createSpy()
- const store = new Vuex.Store({
- modules: {
- foo: {
- namespaced: true,
- state: { count: 0 },
- getters: {
- isEven: state => state.count % 2 === 0
- },
- mutations: {
- inc: state => state.count++,
- dec: state => state.count--
- },
- actions: {
- actionA,
- actionB
- }
- }
- }
- })
- const {
- mapState,
- mapGetters,
- mapMutations,
- mapActions
- } = createNamespacedHelpers('foo/')
- const vm = mount(store, {
- computed: {
- ...mapState(['count']),
- ...mapGetters(['isEven'])
- },
- methods: {
- ...mapMutations(['inc', 'dec']),
- ...mapActions(['actionA', 'actionB'])
- }
- })
- expect(vm.count).toBe(0)
- expect(vm.isEven).toBe(true)
- store.state.foo.count++
- expect(vm.count).toBe(1)
- expect(vm.isEven).toBe(false)
- vm.inc()
- expect(store.state.foo.count).toBe(2)
- expect(store.getters['foo/isEven']).toBe(true)
- vm.dec()
- expect(store.state.foo.count).toBe(1)
- expect(store.getters['foo/isEven']).toBe(false)
- vm.actionA()
- expect(actionA).toHaveBeenCalled()
- expect(actionB).not.toHaveBeenCalled()
- vm.actionB()
- expect(actionB).toHaveBeenCalled()
- })
- })
|