| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- import { describe, expect, it } from 'vitest'
- import { cronPattern, secondsPattern } from './CronJobs.constants'
- import { formatCronJobColumns, parseCronJobCommand } from './CronJobs.utils'
- describe('parseCronJobCommand', () => {
- it('should return a default object when the command is null', () => {
- expect(parseCronJobCommand('', 'random_project_ref')).toStrictEqual({
- httpBody: '',
- method: 'POST',
- snippet: '',
- timeoutMs: 1000,
- type: 'sql_snippet',
- })
- })
- it('should return a default object when the command is random', () => {
- const command = 'some random text'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- snippet: 'some random text',
- type: 'sql_snippet',
- })
- })
- it('should return a sql function command when the command is SELECT auth.jwt ()', () => {
- const command = 'SELECT auth.jwt ()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_function',
- schema: 'auth',
- functionName: 'jwt',
- snippet: command,
- })
- })
- it('should return a sql function command when the command is SELECT auth.jwt () and ends with ;', () => {
- const command = 'SELECT auth.jwt ();'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_function',
- schema: 'auth',
- functionName: 'jwt',
- snippet: command,
- })
- })
- it('should return a sql function command when the function name contains an underscore', () => {
- const command = 'SELECT random_schema.function_1()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_function',
- schema: 'random_schema',
- functionName: 'function_1',
- snippet: command,
- })
- })
- it('should return a sql function command for lowercase select', () => {
- const command = 'select lowercase.issue ()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_function',
- schema: 'lowercase',
- functionName: 'issue',
- snippet: command,
- })
- })
- it('should return a sql snippet command when the command is SELECT public.test_fn(1, 2)', () => {
- const command = 'SELECT public.test_fn(1, 2)'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_snippet',
- snippet: command,
- })
- })
- it('should return a sql snippet command when the command is using a SQL function from the search path', () => {
- const command = 'SELECT test_cron_function()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_snippet',
- snippet: command,
- })
- })
- it('should return a sql snippet command when the command is SELECT .()', () => {
- const command = 'SELECT .()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_snippet',
- snippet: command,
- })
- })
- it('should return a sql snippet command when the command is SELECT schema.()', () => {
- const command = 'SELECT schema.()'
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_snippet',
- snippet: command,
- })
- })
- it('should return a edge function config when the command posts to its own supabase.co project', () => {
- const command = `select net.http_post( url:='https://random_project_ref.supabase.co/functions/v1/_', headers:=jsonb_build_object('Authorization', 'Bearer something'), body:='', timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- edgeFunctionName: 'https://random_project_ref.supabase.co/functions/v1/_',
- method: 'POST',
- httpHeaders: [
- {
- name: 'Authorization',
- value: 'Bearer something',
- },
- ],
- httpBody: '',
- timeoutMs: 5000,
- type: 'edge_function',
- snippet: command,
- })
- })
- it('should return a edge function config when the body is missing', () => {
- const command = `select net.http_post( url:='https://random_project_ref.supabase.co/functions/v1/_', headers:=jsonb_build_object('Authorization', 'Bearer something'), timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- edgeFunctionName: 'https://random_project_ref.supabase.co/functions/v1/_',
- method: 'POST',
- httpHeaders: [
- {
- name: 'Authorization',
- value: 'Bearer something',
- },
- ],
- httpBody: '',
- timeoutMs: 5000,
- type: 'edge_function',
- snippet: command,
- })
- })
- it("should return an HTTP request config when there's a query parameter or hash in the URL (also handles edge function)", () => {
- const command = `select net.http_post( url:='https://random_project_ref.supabase.co/functions/v1/_?first=1#second=2', headers:=jsonb_build_object('Authorization', 'Bearer something'), timeout_milliseconds:=5000 )`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://random_project_ref.supabase.co/functions/v1/_?first=1#second=2',
- method: 'POST',
- httpHeaders: [
- {
- name: 'Authorization',
- value: 'Bearer something',
- },
- ],
- httpBody: '',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config when the command posts to another supabase.co project', () => {
- const command = `select net.http_post( url:='https://another_project_ref.supabase.co/functions/v1/_', headers:=jsonb_build_object(), body:='', timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://another_project_ref.supabase.co/functions/v1/_',
- method: 'POST',
- httpHeaders: [],
- httpBody: '',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method, empty headers and a body as string', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', headers:=jsonb_build_object(), body:='hello', timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [],
- httpBody: 'hello',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method, some headers and empty body', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', headers:=jsonb_build_object('fst', '1', 'snd', 'O''Reilly'), body:='', timeout_milliseconds:=1000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [
- { name: 'fst', value: '1' },
- { name: 'snd', value: "O'Reilly" },
- ],
- httpBody: '',
- timeoutMs: 1000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with GET method and empty body', () => {
- const command = `select net.http_get( url:='https://example.com/api/endpoint', headers:=jsonb_build_object(), timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'GET',
- httpHeaders: [],
- httpBody: '',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method and a body as JSON object', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', headers:=jsonb_build_object(), body:='{"key": "value"}', timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [],
- httpBody: '{"key": "value"}',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method, plain JSON headers and plain JSON body', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', headers:='{"fst": "1", "snd": "2"}',body:='{"key": "value"}',timeout_milliseconds:=5000);`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [
- { name: 'fst', value: '1' },
- { name: 'snd', value: '2' },
- ],
- httpBody: '{"key": "value"}',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method, plain JSON headers and plain JSON body with escaped SQL strings and ::jsonb typecasting', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', headers:='{"X-Name":"O''Reilly"}'::jsonb,body:='{"message":"hello there","name":"O''Reilly"}'::jsonb,timeout_milliseconds:=5000);`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [{ name: 'X-Name', value: "O'Reilly" }],
- httpBody: `{"message":"hello there","name":"O'Reilly"}`,
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return an HTTP request config with POST method, escape-string headers and body with backslashes', () => {
- const command = String.raw`select net.http_post( url:='https://example.com/api/endpoint', headers:=E'{"Content-Type":"application/json","X-Regex":"^\\\\d+$"}'::jsonb,body:=E'{"path":"C:\\\\tmp","regex":"^\\\\d+$"}',timeout_milliseconds:=1000);`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [
- { name: 'Content-Type', value: 'application/json' },
- { name: 'X-Regex', value: String.raw`^\d+$` },
- ],
- httpBody: String.raw`{"path":"C:\\tmp","regex":"^\\d+$"}`,
- timeoutMs: 1000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should parse a POST body without swallowing later quoted arguments', () => {
- const command = `select net.http_post( url:='https://example.com/api/endpoint', body:='{"payload":"ok"}'::jsonb, headers:='{"Authorization":"Bearer demo"}'::jsonb, timeout_milliseconds:=5000 );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- endpoint: 'https://example.com/api/endpoint',
- method: 'POST',
- httpHeaders: [{ name: 'Authorization', value: 'Bearer demo' }],
- httpBody: '{"payload":"ok"}',
- timeoutMs: 5000,
- type: 'http_request',
- snippet: command,
- })
- })
- it('should return SQL snippet type if the command is an HTTP request that cannot be parsed properly due to positional notation', () => {
- const command = `SELECT net.http_post( 'https://webhook.site/dacc2028-a588-462c-9597-c8968e61d0fa', '{"message":"Hello from Briven"}'::jsonb, '{}'::jsonb, '{"Content-Type":"application/json"}'::jsonb );`
- expect(parseCronJobCommand(command, 'random_project_ref')).toStrictEqual({
- type: 'sql_snippet',
- snippet: command,
- })
- })
- // Array of test cases for secondsPattern
- const secondsPatternTests = [
- { description: '10 seconds', command: '10 seconds' },
- { description: '30 seconds', command: '30 seconds' },
- ]
- // Run tests for secondsPattern
- secondsPatternTests.forEach(({ description, command }) => {
- it(`should match the regex for a secondsPattern with "${description}"`, () => {
- expect(command).toMatch(secondsPattern)
- })
- })
- // Array of test cases for cronPattern
- const cronPatternTests = [
- { description: 'every hour', command: '0 * * * *' },
- { description: 'every day at midnight', command: '0 0 * * *' },
- { description: 'every Monday at 9 AM', command: '0 9 * * 1' },
- { description: 'every 15th of the month at noon', command: '0 12 15 * *' },
- { description: 'every January 1st at 3 AM', command: '0 3 1 1 *' },
- { description: 'every 30 minutes', command: '30 * * * *' },
- { description: 'every weekday at 6 PM', command: '0 18 * * 1-5' },
- { description: 'every weekend at 10 AM', command: '0 10 * * 0,6' },
- { description: 'every quarter hour', command: '*/15 * * * *' },
- { description: 'twice daily at 8 AM and 8 PM', command: '0 8,20 * * *' },
- { description: 'last day of every month at midnight (pg_cron $ syntax)', command: '0 0 $ * *' },
- { description: 'last day of every month at noon (pg_cron $ syntax)', command: '0 12 $ * *' },
- ]
- const cronPatternRejectTests = [
- { description: '$ in minute field', command: '$ * * * *' },
- { description: '$ in hour field', command: '* $ * * *' },
- { description: '$ in month field', command: '* * * $ *' },
- { description: '$ in day-of-week field', command: '* * * * $' },
- ]
- cronPatternRejectTests.forEach(({ description, command }) => {
- it(`should not match the regex for a cronPattern with "${description}"`, () => {
- expect(command).not.toMatch(cronPattern)
- })
- })
- // Replace the single cronPattern test with forEach
- cronPatternTests.forEach(({ description, command }) => {
- it(`should match the regex for a cronPattern with "${description}"`, () => {
- expect(command).toMatch(cronPattern)
- })
- })
- })
- describe('formatCronJobColumns', () => {
- it('enables resizing for informational columns and keeps utility columns fixed', () => {
- const columns = formatCronJobColumns({
- onSelectEdit: () => undefined,
- onSelectDelete: () => undefined,
- })
- const columnsByKey = Object.fromEntries(columns.map((column) => [String(column.key), column]))
- expect(columnsByKey.jobname.resizable).toBe(true)
- expect(columnsByKey.jobname.minWidth).toBeGreaterThan(0)
- expect(columnsByKey.schedule.resizable).toBe(true)
- expect(columnsByKey.latest_run.resizable).toBe(true)
- expect(columnsByKey.next_run.resizable).toBe(true)
- expect(columnsByKey.command.resizable).toBe(true)
- expect(columnsByKey.active.resizable).toBe(false)
- expect(columnsByKey.actions.resizable).toBe(false)
- })
- })
|