File size: 7,545 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import {
	JETPACK_ANTI_SPAM_PRODUCTS,
	JETPACK_BACKUP_PRODUCTS,
	JETPACK_SCAN_PRODUCTS,
	JETPACK_SEARCH_PRODUCTS,
	JETPACK_STATS_PRODUCTS,
	PLAN_JETPACK_BUSINESS,
	PLAN_JETPACK_BUSINESS_MONTHLY,
	PLAN_JETPACK_PERSONAL,
	PLAN_JETPACK_PERSONAL_MONTHLY,
	PLAN_JETPACK_PREMIUM,
	PLAN_JETPACK_PREMIUM_MONTHLY,
	PLAN_JETPACK_SECURITY_DAILY,
	PLAN_JETPACK_SECURITY_DAILY_MONTHLY,
	PLAN_JETPACK_SECURITY_REALTIME,
	PLAN_JETPACK_SECURITY_REALTIME_MONTHLY,
	PLAN_JETPACK_SECURITY_T1_MONTHLY,
	PLAN_JETPACK_SECURITY_T1_YEARLY,
	PLAN_JETPACK_SECURITY_T1_BI_YEARLY,
	PLAN_JETPACK_SECURITY_T2_MONTHLY,
	PLAN_JETPACK_SECURITY_T2_YEARLY,
	PRODUCT_JETPACK_STATS_BI_YEARLY,
	PRODUCT_JETPACK_STATS_YEARLY,
	PRODUCT_JETPACK_STATS_MONTHLY,
	PRODUCT_JETPACK_STATS_PWYW_YEARLY,
	PRODUCT_JETPACK_STATS_FREE,
	JETPACK_COMPLETE_PLANS,
} from '@automattic/calypso-products';
import {
	productHasAntiSpam,
	productHasBackups,
	productHasSearch,
	productHasScan,
	productHasStats,
} from '../feature-checks';

describe( 'JetpackBenefits Feature Checks', () => {
	// this method is here for debugging
	// these tests loop through multiple toBe conditions for plan/ product strings, this allows to see which value is failing
	// if used, should be replaced with toBe after debugging
	expect.extend( {
		toBeWithError( recieved, expected, value ) {
			const pass = recieved === expected;
			if ( pass ) {
				return {
					pass: true,
				};
			}

			return {
				pass: false,
				message: () => `Failed when passed ${ value }`,
			};
		},
	} );

	// test that checks for different plan/ product features return as expected
	test( 'Plans and products that have backups return true for productHasBackups', () => {
		const plansWithBackup = [
			...JETPACK_BACKUP_PRODUCTS,
			...JETPACK_COMPLETE_PLANS,
			PLAN_JETPACK_BUSINESS, // Professional
			PLAN_JETPACK_BUSINESS_MONTHLY,
			PLAN_JETPACK_PERSONAL,
			PLAN_JETPACK_PERSONAL_MONTHLY,
			PLAN_JETPACK_PREMIUM,
			PLAN_JETPACK_PREMIUM_MONTHLY,
			PLAN_JETPACK_SECURITY_DAILY,
			PLAN_JETPACK_SECURITY_DAILY_MONTHLY,
			PLAN_JETPACK_SECURITY_REALTIME,
			PLAN_JETPACK_SECURITY_REALTIME_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_YEARLY,
			PLAN_JETPACK_SECURITY_T1_BI_YEARLY,
			PLAN_JETPACK_SECURITY_T2_MONTHLY,
			PLAN_JETPACK_SECURITY_T2_YEARLY,
		];

		plansWithBackup.forEach( ( plan ) => {
			expect( productHasBackups( plan ) ).toBe( true );
		} );
	} );

	// plans without backups return false for productHasBackups
	test( 'Plans and products without backups return false for productHasBackups', () => {
		const plansWithoutBackup = [
			...JETPACK_SCAN_PRODUCTS,
			...JETPACK_ANTI_SPAM_PRODUCTS,
			...JETPACK_SEARCH_PRODUCTS,
		];

		plansWithoutBackup.forEach( ( plan ) => {
			expect( productHasBackups( plan ) ).toBe( false );
		} );
	} );

	// productHasScan
	test( 'Plans and products with scan return true for productHasScan', () => {
		const plansWithScan = [
			...JETPACK_SCAN_PRODUCTS,
			...JETPACK_COMPLETE_PLANS,
			PLAN_JETPACK_PREMIUM,
			PLAN_JETPACK_PREMIUM_MONTHLY,
			PLAN_JETPACK_BUSINESS,
			PLAN_JETPACK_BUSINESS_MONTHLY,
			PLAN_JETPACK_SECURITY_DAILY,
			PLAN_JETPACK_SECURITY_DAILY_MONTHLY,
			PLAN_JETPACK_SECURITY_REALTIME,
			PLAN_JETPACK_SECURITY_REALTIME_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_YEARLY,
			PLAN_JETPACK_SECURITY_T1_BI_YEARLY,
			PLAN_JETPACK_SECURITY_T2_MONTHLY,
			PLAN_JETPACK_SECURITY_T2_YEARLY,
		];

		plansWithScan.forEach( ( plan ) => {
			expect( productHasScan( plan ) ).toBe( true );
		} );
	} );

	test( 'Plans and products without scan return false for productHasScan', () => {
		const plansWithoutScan = [
			...JETPACK_BACKUP_PRODUCTS,
			...JETPACK_SEARCH_PRODUCTS,
			...JETPACK_ANTI_SPAM_PRODUCTS,
			PLAN_JETPACK_PERSONAL,
			PLAN_JETPACK_PERSONAL_MONTHLY,
		];

		plansWithoutScan.forEach( ( plan ) => {
			expect( productHasScan( plan ) ).toBe( false );
		} );
	} );

	// productHasAntiSpam
	test( 'Plans and products with anti-spam return true for productHasAntiSpam', () => {
		const plansWithAntiSpam = [
			...JETPACK_ANTI_SPAM_PRODUCTS,
			...JETPACK_COMPLETE_PLANS,
			PLAN_JETPACK_BUSINESS, // Professional
			PLAN_JETPACK_BUSINESS_MONTHLY,
			PLAN_JETPACK_PERSONAL,
			PLAN_JETPACK_PERSONAL_MONTHLY,
			PLAN_JETPACK_PREMIUM,
			PLAN_JETPACK_PREMIUM_MONTHLY,
			PLAN_JETPACK_SECURITY_DAILY,
			PLAN_JETPACK_SECURITY_DAILY_MONTHLY,
			PLAN_JETPACK_SECURITY_REALTIME,
			PLAN_JETPACK_SECURITY_REALTIME_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_YEARLY,
			PLAN_JETPACK_SECURITY_T1_BI_YEARLY,
			PLAN_JETPACK_SECURITY_T2_MONTHLY,
			PLAN_JETPACK_SECURITY_T2_YEARLY,
		];

		plansWithAntiSpam.forEach( ( plan ) => {
			expect( productHasAntiSpam( plan ) ).toBe( true );
		} );
	} );

	test( 'Plans and products without anti-spam return false for productHasAntiSpam', () => {
		const plansWithoutAntiSpam = [
			...JETPACK_BACKUP_PRODUCTS,
			...JETPACK_SCAN_PRODUCTS,
			...JETPACK_SEARCH_PRODUCTS,
		];

		plansWithoutAntiSpam.forEach( ( plan ) => {
			expect( productHasAntiSpam( plan ) ).toBe( false );
		} );
	} );

	// productHasSearch
	test( 'Plans and products with search return true for productHasSearch', () => {
		const plansWithSearch = [
			...JETPACK_SEARCH_PRODUCTS,
			...JETPACK_COMPLETE_PLANS,
			PLAN_JETPACK_BUSINESS,
			PLAN_JETPACK_BUSINESS_MONTHLY,
		];

		plansWithSearch.forEach( ( plan ) => {
			expect( productHasSearch( plan ) ).toBe( true );
		} );
	} );

	test( 'Plans and products without search return false for productHasSearch', () => {
		const plansWithoutSearch = [
			...JETPACK_BACKUP_PRODUCTS,
			...JETPACK_SCAN_PRODUCTS,
			...JETPACK_ANTI_SPAM_PRODUCTS,
			PLAN_JETPACK_PERSONAL,
			PLAN_JETPACK_PERSONAL_MONTHLY,
			PLAN_JETPACK_PREMIUM,
			PLAN_JETPACK_PREMIUM_MONTHLY,
			PLAN_JETPACK_SECURITY_DAILY,
			PLAN_JETPACK_SECURITY_DAILY_MONTHLY,
			PLAN_JETPACK_SECURITY_REALTIME,
			PLAN_JETPACK_SECURITY_REALTIME_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_MONTHLY,
			PLAN_JETPACK_SECURITY_T1_YEARLY,
			PLAN_JETPACK_SECURITY_T1_BI_YEARLY,
			PLAN_JETPACK_SECURITY_T2_MONTHLY,
			PLAN_JETPACK_SECURITY_T2_YEARLY,
		];

		plansWithoutSearch.forEach( ( plan ) => {
			expect( productHasSearch( plan ) ).toBe( false );
		} );
	} );

	//productHasStats
	test( 'Plans and products with stats return true for productHasStats', () => {
		const plansWithStats = [ ...JETPACK_STATS_PRODUCTS ];

		plansWithStats.forEach( ( plan ) => {
			expect( productHasStats( plan ) ).toBe( true );
		} );
	} );

	test( 'Plans and products without stats return false for productHasStats', () => {
		const plansWithoutStats = [
			...JETPACK_SEARCH_PRODUCTS,
			...JETPACK_ANTI_SPAM_PRODUCTS,
			PLAN_JETPACK_SECURITY_DAILY,
			PLAN_JETPACK_SECURITY_T2_YEARLY,
		];

		plansWithoutStats.forEach( ( plan ) => {
			expect( productHasStats( plan ) ).toBe( false );
		} );
	} );

	test( 'Plans and products with paid stats return true for productHasStats', () => {
		const plansWithPaidStats = [
			PRODUCT_JETPACK_STATS_MONTHLY,
			PRODUCT_JETPACK_STATS_PWYW_YEARLY,
			PRODUCT_JETPACK_STATS_YEARLY,
			PRODUCT_JETPACK_STATS_BI_YEARLY,
		];

		plansWithPaidStats.forEach( ( plan ) => {
			expect( productHasStats( plan, true ) ).toBe( true );
		} );
	} );

	test( 'Plans and products with free stats return false for productHasStats onlyPaid', () => {
		const plansWithoutPaidStats = [ PRODUCT_JETPACK_STATS_FREE ];

		plansWithoutPaidStats.forEach( ( plan ) => {
			expect( productHasStats( plan, true ) ).toBe( false );
		} );
	} );
} );