Skip to content
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

Added testcases for HeaderSearch Component #4200

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions tests/unit/components/HeaderSearch.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import { shallowMount, createLocalVue } from '@vue/test-utils'
import HeaderSearch from '@/components/HeaderSearch/index.vue'
import Vuex from 'vuex'

const localVue = createLocalVue()

localVue.use(Vuex)
describe('HeaderSearch.Vue', () => {
let getters
let store
let state

beforeEach(() => {
state = {
permission: {
routes: []
}
}
getters = {
permission_routes: () => []
}

store = new Vuex.Store({
getters,
state
})
})

it('It mounts', () => {
const wrapper = shallowMount(HeaderSearch, { store, localVue })
expect(wrapper.html()).toBeTruthy()
})

it('tests click', () => {
const wrapper = shallowMount(HeaderSearch, { store, localVue })
wrapper.vm.show = true
const clickSpy = jest.spyOn(wrapper.vm, 'click')
wrapper.vm.click()
expect(clickSpy).toHaveBeenCalled()
expect(wrapper.vm.show).toEqual(false)
})

it('tests change', () => {
const mockRoute = {
params: {
id: 1
}
}
const mockRouter = {
push: jest.fn()
}
const wrapper = shallowMount(HeaderSearch, {
store,
localVue,
global: {
mocks: {
$route: mockRoute,
$router: mockRouter
}
}
})
const changeSpy = jest.spyOn(wrapper.vm, 'change')
wrapper.vm.$router = {
push: jest.fn()
}
wrapper.vm.change({ path: 'test' })
expect(changeSpy).toHaveBeenCalled()
})
})