forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompareLocations.unittest.js
136 lines (112 loc) · 3.84 KB
/
compareLocations.unittest.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
"use strict";
const compareLocations = require("../lib/compareLocations");
const createPosition = overrides => {
return Object.assign(
{
line: 10,
column: 5
},
overrides
);
};
const createLocation = (start, end, index) => {
return {
start: createPosition(start),
end: createPosition(end),
index: index || 3
};
};
describe("compareLocations", () => {
describe("string location comparison", () => {
it("returns -1 when the first string comes before the second string", () => {
expect(compareLocations("alpha", "beta")).toBe(-1);
});
it("returns 1 when the first string comes after the second string", () => {
expect(compareLocations("beta", "alpha")).toBe(1);
});
it("returns 0 when the first string is the same as the second string", () => {
expect(compareLocations("charlie", "charlie")).toBe(0);
});
});
describe("object location comparison", () => {
let a, b;
describe("location line number", () => {
beforeEach(() => {
a = createLocation({
line: 10
});
b = createLocation({
line: 20
});
});
it("returns -1 when the first location line number comes before the second location line number", () => {
expect(compareLocations(a, b)).toBe(-1);
});
it("returns 1 when the first location line number comes after the second location line number", () => {
expect(compareLocations(b, a)).toBe(1);
});
});
describe("location column number", () => {
beforeEach(() => {
a = createLocation({
column: 10
});
b = createLocation({
column: 20
});
});
it("returns -1 when the first location column number comes before the second location column number", () => {
expect(compareLocations(a, b)).toBe(-1);
});
it("returns 1 when the first location column number comes after the second location column number", () => {
expect(compareLocations(b, a)).toBe(1);
});
});
describe("location index number", () => {
beforeEach(() => {
a = createLocation(null, null, 10);
b = createLocation(null, null, 20);
});
it("returns -1 when the first location index number comes before the second location index number", () => {
expect(compareLocations(a, b)).toBe(-1);
});
it("returns 1 when the first location index number comes after the second location index number", () => {
expect(compareLocations(b, a)).toBe(1);
});
});
describe("same location", () => {
beforeEach(() => {
a = createLocation();
b = createLocation();
});
it("returns 0", () => {
expect(compareLocations(a, b)).toBe(0);
});
});
});
describe("string and object location comparison", () => {
it("returns 1 when the first parameter is a string and the second parameter is an object", () => {
expect(compareLocations("alpha", createLocation())).toBe(1);
});
it("returns -1 when the first parameter is an object and the second parameter is a string", () => {
expect(compareLocations(createLocation(), "alpha")).toBe(-1);
});
});
describe("unknown location type comparison", () => {
it("returns 0 when the first parameter is an object and the second parameter is a number", () => {
expect(compareLocations(createLocation(), 123)).toBe(0);
});
it("returns undefined when the first parameter is a number and the second parameter is an object", () => {
expect(compareLocations(123, createLocation())).toBe(undefined);
});
it("returns 0 when the first parameter is a string and the second parameter is a number", () => {
expect(compareLocations("alpha", 123)).toBe(0);
});
it("returns undefined when the first parameter is a number and the second parameter is a string", () => {
expect(compareLocations(123, "alpha")).toBe(undefined);
});
it("returns undefined when both the first parameter and the second parameter is a number", () => {
expect(compareLocations(123, 456)).toBe(undefined);
});
});
});