-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for less common entity routes #920
base: master
Are you sure you want to change the base?
Conversation
Pull Request Test Coverage Report for Build 14224011078Details
💛 - Coveralls |
if (!table || !name) { | ||
return { data: null, error: { message: 'Missing required name or table parameter' } } | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chore
Avoid ident
to raise an exception ending with 500
if those params are empty. TODO: migrate all this to zod for better validation of the params.
import { expect, test } from 'vitest' | ||
import { app } from './utils' | ||
|
||
test('extension list filtering', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we actually check that some extensions correctly returned?
it's also not filtering, name a bit misleading
`) | ||
}) | ||
|
||
// TODO(andrew): Those should return 400 error code for invalid parameter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe 200 and do nothing?
empty string isnt smth bad really
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah agreed 200 is fine here. I think just like formatters in code editors it shouldn't fail when there are syntax errors; rather it should try to format the rest of the code despite the errors.
expect(res.statusCode).toBe(500) | ||
}) | ||
|
||
test('format with missing query parameter', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo:
this one should be 400 probably
import { expect, test } from 'vitest' | ||
import { app } from './utils' | ||
|
||
test('function list filtering', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test('function list filtering', async () => { | |
test('function list with limit', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it should create functions first and check that they are correctly returned, if we test with limit, probably we should also create limit + 1 first and then check that limit actually works
expect(Array.isArray(functions)).toBe(true) | ||
// All functions should be in the public schema | ||
functions.forEach((func) => { | ||
expect(func.schema).toBe('public') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should create some first in other schemas
}) | ||
}) | ||
|
||
test('trigger with invalid id', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test('trigger with invalid id', async () => { | |
test('get trigger with invalid id', async () => { |
expect(types.length).toBeLessThanOrEqual(5) | ||
}) | ||
|
||
test('type list with specific included schema', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to create some in other schema(s) first
import { expect, test } from 'vitest' | ||
import { app } from './utils' | ||
|
||
test('type list filtering', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also same as for other list tests, we should create some first to check that they are returned and that limit works (not sure we have >5)
import { expect, test } from 'vitest' | ||
import { app } from './utils' | ||
|
||
test('type list filtering', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test('type list filtering', async () => { | |
test('type list with limit', async () => { |
const types = res.json() | ||
expect(Array.isArray(types)).toBe(true) | ||
// Should not include array types | ||
const arrayTypes = types.filter((type) => type.name.startsWith('_')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we have array types?
sorry if missed it
What kind of change does this PR introduce?
WARNING! LLM Generated, please review carefully
Test coverage for
server/config
server/extensions
server/format
server/functions
server/generators
server/policies
server/publications
server/triggers
server/types
to get coverage > 80%