File size: 13,016 Bytes
6778ee0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import {
  initializePageDynamically,
  serializeWithFunctions
} from './support/initialize-page-dynamically'
import {
  e,
  expectPlausibleInAction,
  hideAndShowCurrentTab,
  isPageviewEvent,
  isEngagementEvent,
  switchByMode
} from './support/test-utils'
import { test, expect } from '@playwright/test'
import { ScriptConfig } from './support/types'
import { LOCAL_SERVER_ADDR } from './support/server'

const DEFAULT_CONFIG: ScriptConfig = {
  domain: 'example.com',
  endpoint: `${LOCAL_SERVER_ADDR}/api/event`,
  captureOnLocalhost: true
}

for (const mode of ['web', 'esm']) {
  test.describe(`respects "transformRequest" config option (${mode})`, () => {
    test('if "transformRequest" is not a function, nothing happens', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        transformRequest: 123
      }
      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: ''
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
          await hideAndShowCurrentTab(page, { delay: 200 })
        },
        expectedRequests: [
          {
            n: 'pageview',
            p: e.toBeUndefined()
          },
          { n: 'engagement', p: e.toBeUndefined() }
        ]
      })
    })

    test('if "transformRequest" is set to be a function that returns null conditionally, those events are not sent', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        transformRequest: (payload) => {
          if (payload.n === 'Purchase') {
            return null
          }
          return payload
        }
      }

      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: /* HTML */ `<button onclick="window.plausible('Purchase')">
          Purchase
        </button>`
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
          await page.click('button')
        },
        expectedRequests: [{ n: 'pageview' }],
        refutedRequests: [
          {
            n: 'Purchase'
          }
        ],
        shouldIgnoreRequest: [isEngagementEvent]
      })
    })

    test('if "transformRequest" is set to be a function, it will be called for all events', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        transformRequest: (payload) => {
          return { ...payload, u: '/:masked/path' }
        }
      }

      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: /* HTML */ `<button onclick="window.plausible('Purchase')">
          Purchase
        </button>`
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
          await page.click('button')
          await hideAndShowCurrentTab(page, { delay: 200 })
        },
        expectedRequests: [
          { n: 'pageview', u: '/:masked/path' },
          { n: 'Purchase', u: '/:masked/path' },
          { n: 'engagement', u: '/:masked/path' }
        ]
      })
    })

    test('"transformRequest" does not allow making engagement event props different from pageview event props', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        transformRequest: (payload) => {
          // @ts-expect-error - defines window.requestCount
          window.requestCount = (window.requestCount ?? 0) + 1
          // @ts-expect-error - window.requestCount is defined
          return { ...payload, p: { requestCount: window.requestCount } }
        }
      }

      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: /* HTML */ `<button onclick="window.plausible('Purchase')">
          Purchase
        </button>`
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
          await page.click('button')
          await hideAndShowCurrentTab(page, { delay: 200 })
        },
        expectedRequests: [
          { n: 'pageview', p: { requestCount: 1 } },
          { n: 'Purchase', p: { requestCount: 2 } },
          { n: 'engagement', p: { requestCount: 1 } }
        ]
      })
    })

    test('specificity: "transformRequest" runs after custom properties are determined', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        customProperties: () => ({
          author: 'John Smith'
        }),
        transformRequest: (payload) => {
          return { ...payload, p: { author: 'Jane Doe' } }
        }
      }

      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: ''
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
        },
        shouldIgnoreRequest: [isEngagementEvent],
        expectedRequests: [
          {
            n: 'pageview',
            p: {
              author: 'Jane Doe'
            }
          }
        ]
      })
    })

    test('if "transformRequest" is defined to be a function that does not return an object, the request is still attempted', async ({
      page
    }, { testId }) => {
      const config = {
        ...DEFAULT_CONFIG,
        transformRequest: () => 'not an object'
      }

      const { url } = await initializePageDynamically(page, {
        testId,
        scriptConfig: switchByMode(
          {
            web: config,
            esm: `<script type="module">import { init, track } from '/tracker/js/npm_package/plausible.js'; init(${serializeWithFunctions(
              config
            )})</script>`
          },
          mode
        ),
        bodyContent: /* HTML */ `<button
          onclick="window.plausible('subscribed from blog', { props: { title: 'A blog post title' } })"
        >
          Subscribe
        </button>`
      })

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(url)
          await page.click('button')
        },
        shouldIgnoreRequest: [isEngagementEvent],
        expectedRequests: ['not an object', 'not an object']
      })
    })
  })
}

test.describe(`transformRequest examples from /docs work`, () => {
  test.beforeEach(async ({ page }) => {
    await page
      .context()
      .route(new RegExp('(http|https)://example\\.com.*'), async (route) => {
        await route.fulfill({
          status: 200,
          contentType: 'text/html',
          body: /* HTML */ `<!DOCTYPE html>
            <html>
              <head>
                <title>mocked page</title>
              </head>
              <body>
                mocked page
              </body>
            </html>`
        })
      })
  })

  test('you can omit automatically tracked url property from tagged link clicks', async ({
    page
  }, { testId }) => {
    function omitAutomaticUrlProperty(payload) {
      if (payload.p && payload.p.url) {
        delete payload.p.url
      }
      return payload
    }
    const config = {
      ...DEFAULT_CONFIG,
      transformRequest: omitAutomaticUrlProperty
    }
    const { url } = await initializePageDynamically(page, {
      testId,
      scriptConfig: config,
      bodyContent: /* HTML */ `<a
        class="plausible-event-name=Purchase plausible-event-discounted=true"
        href="https://example.com/target?user=sensitive"
        >Purchase</a
      >`
    })

    await expectPlausibleInAction(page, {
      action: async () => {
        await page.goto(url)
        await page.click('a')
      },
      expectedRequests: [
        {
          n: 'Purchase',
          p: { discounted: 'true' } // <-- no url property
        }
      ],
      shouldIgnoreRequest: [isPageviewEvent, isEngagementEvent]
    })
    await expect(page.getByText('mocked page')).toBeVisible()
  })

  for (const { hashBasedRouting, urlSuffix, expectedUrlSuffix } of [
    {
      hashBasedRouting: true,
      urlSuffix:
        '?utm_source=example&utm_medium=referral&utm_campaign=test#fragment',
      expectedUrlSuffix: '#fragment'
    },
    {
      hashBasedRouting: false,
      urlSuffix: '?utm_source=example&utm_medium=referral&utm_campaign=test',
      expectedUrlSuffix: ''
    }
  ]) {
    test(`you can omit UTM properties from pageview urls (hashBasedRouting: ${hashBasedRouting})`, async ({
      page
    }, { testId }) => {
      function omitUTMProperties(payload) {
        const parts = payload.u.split('?')
        let urlWithoutQuery = parts.shift()

        if (payload.h) {
          const fragment = parts.join('?').split('#')[1]
          urlWithoutQuery =
            typeof fragment === 'string'
              ? urlWithoutQuery + '#' + fragment
              : urlWithoutQuery
        }

        payload.u = urlWithoutQuery
        return payload
      }

      const config = {
        ...DEFAULT_CONFIG,
        hashBasedRouting,
        transformRequest: omitUTMProperties
      }

      // the star path is needed for the dynamic page to load when accessing it with query params
      const path = '*'
      const { url } = await initializePageDynamically(page, {
        testId,
        path,
        scriptConfig: config,
        bodyContent: ''
      })

      const [actualUrl] = url.split('*')

      await expectPlausibleInAction(page, {
        action: async () => {
          await page.goto(`${actualUrl}${urlSuffix}`)
          // await page.click('a')
        },
        expectedRequests: [
          {
            n: 'pageview',
            u: `${LOCAL_SERVER_ADDR}${actualUrl}${expectedUrlSuffix}`
          }
        ],
        shouldIgnoreRequest: [isEngagementEvent]
      })
    })
  }

  test('you can track pages using their canonical url', async ({ page }, {
    testId
  }) => {
    function rewriteUrlToCanonicalUrl(payload) {
      // Get the canonical URL element
      const canonicalMeta = document.querySelector('link[rel="canonical"]')
      // Use the canonical URL if it exists, falling back on the regular URL when it doesn't.
      if (canonicalMeta) {
        // @ts-expect-error - canonicalMeta definitely has the href attribute
        payload.u = canonicalMeta.href + window.location.search
      }
      return payload
    }

    // the star path is needed for the dynamic page to load when accessing it with query params
    const nonCanonicalPath = '/products/clothes/shoes/banana-leather-shoe*'
    const { url } = await initializePageDynamically(page, {
      testId,
      path: nonCanonicalPath,
      scriptConfig: /* HTML */ `
        <link rel="canonical" href="/products/banana-leather-shoe" />
        <script type="module">
          import { init, track } from '/tracker/js/npm_package/plausible.js'
          init(
            ${serializeWithFunctions({
              ...DEFAULT_CONFIG,
              transformRequest: rewriteUrlToCanonicalUrl
            })}
          )
        </script>
      `,
      bodyContent: ''
    })
    const [actualUrl] = url.split('*')

    await expectPlausibleInAction(page, {
      action: async () => {
        await page.goto(`${actualUrl}?utm_source=example`)
      },
      expectedRequests: [
        {
          n: 'pageview',
          u: `${LOCAL_SERVER_ADDR}/products/banana-leather-shoe?utm_source=example`
        }
      ],
      shouldIgnoreRequest: [isEngagementEvent]
    })
  })
})