-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue-test-utils-test-example.spec.js
160 lines (148 loc) · 5.56 KB
/
vue-test-utils-test-example.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import Vue from "vue";
import VueRouter from "vue-router";
import { createLocalVue, mount } from "~vue/test-utils";
describe("router.push", () => {
it("calls beforeMount only once", async () => {
let countBeforeMountCalled = 0;
const localVue = createLocalVue();
localVue.use(VueRouter);
const routes = [
{
path: "/",
component: {
render: h => h("div", "home")
}
},
{
path: "/user/:id",
// component: User,
component: Vue.extend({
// Component with children, nested router-view.
render: function (h) {
return h("router-view");
},
beforeMount: function () {
countBeforeMountCalled += 1;
console.log("[!] beforeMount Parent");
},
beforeRouteUpdate: function (to, from, next) {
console.log("beforeRouteUpdate Parent");
next();
}
}),
children: [
{
path: ":post_url_slug",
component: Vue.extend({
render: function (h) {
return h("div", "Post Page");
},
beforeMount: function () {
console.log("beforeMount Nested");
},
beforeRouteUpdate: function (to, from, next) {
console.log("beforeRouteUpdate Nested");
next();
}
})
}
]
}
];
const router = new VueRouter({
routes
});
const wrapper = mount(
{
template: `<div><router-view></router-view></div>`,
beforeMount: function () {
console.log("beforeMount App");
}
},
{ localVue, router }
);
expect(wrapper.vm.$route).to.be.an("object");
expect(wrapper.text()).to.contain("home");
router.push({ path: "/user/1/post1" });
await wrapper.vm.$nextTick();
expect(wrapper.text()).to.contain("Post Page");
router.push({ path: "/user/1/post2" });
await wrapper.vm.$nextTick();
expect(wrapper.text()).to.contain("Post Page");
expect(countBeforeMountCalled).to.equal(1);
});
it("calls beforeMount only once - attempt two", async () => {
let countBeforeMountCalled = 0;
const localVue = createLocalVue();
localVue.use(VueRouter);
const routes = [
{
path: "/",
component: {
render: h => h("div", "home")
}
},
{
path: "/user/:id",
// component: User,
component: Vue.extend({
// Component with children, nested router-view.
render: function (h) {
return h("router-view");
},
beforeMount: function () {
countBeforeMountCalled += 1;
console.log("[!] beforeMount Parent");
},
beforeRouteUpdate: function (to, from, next) {
console.log("beforeRouteUpdate Parent");
next();
}
}),
children: [
{
path: ":post_url_slug",
component: Vue.extend({
render: function (h) {
return h("div", "Post Page");
},
beforeMount: function () {
console.log("beforeMount Nested");
},
beforeRouteUpdate: function (to, from, next) {
console.log("beforeRouteUpdate Nested");
next();
}
})
}
]
}
];
const router = new VueRouter({
routes
});
const wrapper = mount(
{
template: `<div><router-view></router-view></div>`,
beforeMount: function () {
console.log("beforeMount App");
}
},
{ localVue, router }
);
expect(wrapper.vm.$route).to.be.an("object");
// We need to push the root path here as VueRouter, propbably, preservers
// the state globally, so it remains on the user/1/post2 page initially
console.log(router.currentRoute.path);
// expect(router.currentRoute.params).to.contain('home')
router.push({ path: "/" });
expect(wrapper.text()).to.contain("home");
router.push({ path: "/user/1/post1" });
await wrapper.vm.$nextTick();
expect(wrapper.text()).to.contain("Post Page");
router.push({ path: "/user/1/post2" });
await wrapper.vm.$nextTick();
expect(wrapper.text()).to.contain("Post Page");
expect(countBeforeMountCalled).to.equal(1);
});
});