我正在测试使用vue路由器观看$ route的单个文件组件。问题是我无法通过测试来改变路线并触发观察者的功能。
测试文件:
import { createLocalVue, shallow } from 'vue-test-utils';
import Vue from 'vue';
import Vuex from 'vuex';
const localVue = createLocalVue();
localVue.use(Vuex);
const $route = {
path: '/my/path',
query: { uuid: 'abc' },
}
wrapper = shallow({
localVue,
store,
mocks: {
$route,
}
});
it('should call action when route changes', () => {
// ensure jest has a clean state for this mocked func
expect(actions['myVuexAction']).not.toHaveBeenCalled();
vm.$set($route.query, 'uuid', 'def');
//vm.$router.replace(/my/path?uuid=def') // tried when installing actual router
//vm.$route.query.uuid = 'def'; // tried
//vm.$route = { query: { uuid: 'def'} }; // tried
expect(actions['myVuexAction']).toHaveBeenLastCalledWith({ key: true });
});
我在SFC中的监视方法:
watch: {
$route() {
this.myVuexAction({ key: true });
},
},
如何以这样的方式模拟路由器以便您可以观看它并测试手表方法是否按预期工作?
答案 0 :(得分:0)
这是我测试路线更改手表的方式,该手表将当前路线名称作为CSS类添加到我的应用程序组件中:
import VueRouter from 'vue-router'
import { shallowMount, createLocalVue } from '@vue/test-utils'
import MyApp from './MyApp'
describe('MyApp', () => {
it('adds current route name to css classes on route change', () => {
// arrange
const localVue = createLocalVue()
localVue.use(VueRouter)
const router = new VueRouter({ routes: [{path: '/my-new-route', name: 'my-new-route'}] })
const wrapper = shallowMount(MyApp, { localVue, router })
// act
router.push({ name: 'my-new-route' })
// assert
expect(wrapper.find('.my-app').classes()).toContain('my-new-route')
})
})
答案 1 :(得分:0)
已通过vue@2.6.11
和vue-router@3.1.3
测试。
我检查了VueRouter
如何初始化$route
和$router
,并在测试中进行了复制。以下工作无需直接使用VueRouter
:
const localVue = createLocalVue();
// Mock $route
const $routeWrapper = {
$route: null,
};
localVue.util.defineReactive($routeWrapper, '$route', {
params: {
step,
},
});
Object.defineProperty(localVue.prototype, '$route', {
get() { return $routeWrapper.$route; },
});
// Mock $router
const $routerPushStub = sinon.stub();
localVue.prototype.$router = { push: $routerPushStub };
const wrapper = shallowMount(TestComponent, {
localVue,
});
始终应通过替换整个对象来完成$route
的更新,这是不使用$route
上的深度监视程序的唯一方法,也是VueRouter
的行为方式:< / p>
$routeWrapper.$route = { params: { step: 1 } };
await vm.wrapper.$nextTick();
来源:install.js
答案 2 :(得分:0)
它对我有用
let $route = {
name: 'any-route',
};
我们定义了一个 $route 并调用了 like
wrapper = mount(YourComponent, {
mocks: {
$route,
},
});
我的组件是这样的
@Watch('$route', { deep: true, immediate: true, })
async onRouteChange(val: Route) {
if (val.name === 'my-route') {
await this.getDocumentByUrl();
await this.allDocuments();
}
};
pd:我使用打字稿,但这适用于另一种格式
最后是我的测试
it('my test', ()=>{
const getDocumentByUrl = jest.spyOn(wrapper.vm, 'getDocumentByUrl');
const allDocuments = jest.spyOn(wrapper.vm, 'allDocuments');
wrapper.vm.$route.name = 'my-route';
await flushPromises();
expect(getDocumentByUrl).toHaveBeenCalled();
expect(allDocuments).toHaveBeenCalled();
})
答案 3 :(得分:-1)
实际上这样做的方法是使用vue-test-utils包装器方法setData
。
wrapper.setData({ $route: { query: { uuid: 'def'} } });