Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

olirice
Copy link

@olirice olirice commented Apr 2, 2025

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%

@olirice olirice requested review from a team as code owners April 2, 2025 12:03
@coveralls
Copy link

coveralls commented Apr 2, 2025

Pull Request Test Coverage Report for Build 14224011078

Details

  • 3 of 3 (100.0%) changed or added relevant lines in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+5.0%) to 80.894%

Totals Coverage Status
Change from base Build 14195985967: 5.0%
Covered Lines: 5331
Relevant Lines: 6481

💛 - Coveralls

Comment on lines +115 to +117
if (!table || !name) {
return { data: null, error: { message: 'Missing required name or table parameter' } }
}
Copy link
Member

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 () => {

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

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

Copy link
Member

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 () => {

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 () => {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
test('function list filtering', async () => {
test('function list with limit', async () => {

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')

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 () => {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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 () => {

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 () => {

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 () => {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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('_'))

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

@olirice olirice requested a review from avallete April 3, 2025 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants