| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import { beforeEach, describe, expect, it } from 'vitest'
- import {
- clearPendingSigningSecretReveal,
- getPendingSigningSecretReveal,
- resetPendingSigningSecretRevealForTests,
- setPendingSigningSecretReveal,
- shouldHandleEndpointNotFound,
- } from './PlatformWebhooksPage.utils'
- describe('PlatformWebhooksPage.utils', () => {
- const endpointId = '7f2c9d4a-6e31-4d9d-9a1f-2c4b5e6f7081'
- const otherEndpointId = '1a4e8c73-5b29-44af-8c62-9f1d2b3c4d5e'
- const missingEndpointId = '00000000-0000-4000-8000-000000000000'
- beforeEach(() => {
- resetPendingSigningSecretRevealForTests()
- })
- it('returns false when endpoint id is absent', () => {
- expect(
- shouldHandleEndpointNotFound({
- endpointId: undefined,
- hasSelectedEndpoint: false,
- pendingCreatedEndpointId: null,
- })
- ).toBe(false)
- })
- it('returns false when endpoint is selected', () => {
- expect(
- shouldHandleEndpointNotFound({
- endpointId,
- hasSelectedEndpoint: true,
- pendingCreatedEndpointId: null,
- })
- ).toBe(false)
- })
- it('returns false while route is transitioning to a newly created endpoint', () => {
- expect(
- shouldHandleEndpointNotFound({
- endpointId,
- hasSelectedEndpoint: false,
- pendingCreatedEndpointId: endpointId,
- })
- ).toBe(false)
- })
- it('returns true for invalid endpoint routes', () => {
- expect(
- shouldHandleEndpointNotFound({
- endpointId: missingEndpointId,
- hasSelectedEndpoint: false,
- pendingCreatedEndpointId: null,
- })
- ).toBe(true)
- })
- it('stores and reads pending signing secret reveal for matching endpoint route', () => {
- setPendingSigningSecretReveal('project', {
- endpointId,
- signingSecret: 'whsec_example',
- })
- expect(getPendingSigningSecretReveal('project', endpointId)).toEqual({
- endpointId,
- signingSecret: 'whsec_example',
- })
- })
- it('ignores pending signing secret reveal when endpoint route does not match', () => {
- setPendingSigningSecretReveal('project', {
- endpointId,
- signingSecret: 'whsec_example',
- })
- expect(getPendingSigningSecretReveal('project', otherEndpointId)).toBeNull()
- })
- it('clears pending signing secret reveal', () => {
- setPendingSigningSecretReveal('project', {
- endpointId,
- signingSecret: 'whsec_example',
- })
- clearPendingSigningSecretReveal('project')
- expect(getPendingSigningSecretReveal('project', endpointId)).toBeNull()
- })
- })
|