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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
const isMobile = require('../src/isMobile');
describe('Apple', () => {
let mobile;
let userAgent;
beforeEach(() => {
mobile = null;
userAgent = null;
});
describe('iPhone UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543 Safari/419.3';
mobile = isMobile(userAgent);
});
test('should be an iPhone', () => {
expect(mobile.apple.phone).toBe(true);
});
test('should not be an iPad', () => {
expect(mobile.apple.tablet).not.toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be matched as Any Phone', () => {
expect(mobile.phone).toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('iPad UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10';
mobile = isMobile(userAgent);
});
test('should not be an iPhone', () => {
expect(mobile.apple.phone).not.toBe(true);
});
test('should be an iPad', () => {
expect(mobile.apple.tablet).toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be matched as Any Tablet', () => {
expect(mobile.tablet).toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('iPod UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPod; U; CPU like Mac OS X; en) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/3A101a Safari/419.3';
mobile = isMobile(userAgent);
});
test('should not be an iPhone', () => {
expect(mobile.apple.phone).not.toBe(true);
});
test('should not be an iPad', () => {
expect(mobile.apple.tablet).not.toBe(true);
});
test('should be an iPod', () => {
expect(mobile.apple.ipod).toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('Facebook iPhone App UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPhone; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12B410 [FBAN/FBIOS;FBAV/20.1.0.15.10;FBBV/5758778;FBDV/iPad5,4;FBMD/iPad;FBSN/iPhone OS;FBSV/8.1;FBSS/2; FBCR/;FBID/tablet;FBLC/fi_FI;FBOP/1]';
mobile = isMobile(userAgent);
});
test('should be an iPhone', () => {
expect(mobile.apple.phone).toBe(true);
});
test('should not be an iPad', () => {
expect(mobile.apple.tablet).not.toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('Facebook iPad App UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPad; CPU OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12B410 [FBAN/FBIOS;FBAV/20.1.0.15.10;FBBV/5758778;FBDV/iPad5,4;FBMD/iPad;FBSN/iPhone OS;FBSV/8.1;FBSS/2; FBCR/;FBID/tablet;FBLC/fi_FI;FBOP/1]';
mobile = isMobile(userAgent);
});
test('should not be an iPhone', () => {
expect(mobile.apple.phone).not.toBe(true);
});
test('should be an iPad', () => {
expect(mobile.apple.tablet).toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('Twitter iPhone App UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13D15 Twitter for iPhone';
mobile = isMobile(userAgent);
});
test('should be an iPhone', () => {
expect(mobile.apple.phone).toBe(true);
});
test('should not be an iPad', () => {
expect(mobile.apple.tablet).not.toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
describe('Twitter iPad App UserAgent', () => {
beforeEach(() => {
userAgent =
'Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13D15 Twitter for iPhone';
mobile = isMobile(userAgent);
});
test('should not be an iPhone', () => {
expect(mobile.apple.phone).not.toBe(true);
});
test('should be an iPad', () => {
expect(mobile.apple.tablet).toBe(true);
});
test('should not be an iPod', () => {
expect(mobile.apple.ipod).not.toBe(true);
});
test('should be an Apple device', () => {
expect(mobile.apple.device).toBe(true);
});
});
});