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

feat(server file): add createServer #9845

Merged
merged 34 commits into from
Jan 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
858cdaa
update server file to more finalized api
jtoar Oct 26, 2023
3610b75
createServer: Type `start`
Tobbe Jan 18, 2024
7329e51
make start options optional
jtoar Jan 18, 2024
1755f9f
Use Object.assign instead of spread to avoid copying object
Tobbe Jan 18, 2024
db5790f
move setup server file out of exp
jtoar Jan 18, 2024
c795c4f
remove experimental warning from dev server
jtoar Jan 18, 2024
be8178b
temporary fix for graphql
jtoar Jan 19, 2024
abf8b2a
add babel plugin
jtoar Jan 19, 2024
93d7d94
babel graphql extract plugin
Josh-Walker-GM Jan 19, 2024
a4f7f6c
revert graphql function
Josh-Walker-GM Jan 19, 2024
501b3ea
wip
Josh-Walker-GM Jan 19, 2024
56f36bc
handle apiRootPath in graphql
jtoar Jan 19, 2024
b6081bc
add filterFn to loadFunctions
jtoar Jan 19, 2024
ed74c95
fix filter fn options
jtoar Jan 19, 2024
6cf9a57
rename rw fastify plugin
jtoar Jan 19, 2024
4e59299
fix babel plugin
Josh-Walker-GM Jan 19, 2024
7c9fd71
remove unused graphql plugin from fastify package
jtoar Jan 19, 2024
97f0671
rm space from dirname lol
jtoar Jan 19, 2024
b36edeb
conditionally register graphql plugin
jtoar Jan 19, 2024
22b45e0
copy over dotenv-defaults fix
jtoar Jan 19, 2024
92a08da
get tests passing
jtoar Jan 19, 2024
8a283b5
refactor some tests
jtoar Jan 19, 2024
4168c36
move context up
jtoar Jan 19, 2024
8ccadeb
remove context from graphql
jtoar Jan 19, 2024
77f7262
pass cli args through to watch
jtoar Jan 19, 2024
fbde827
improve comments
jtoar Jan 19, 2024
cde8091
comment graphql options
jtoar Jan 20, 2024
9bdb885
improve mocks in tests
jtoar Jan 20, 2024
458a3f1
remove console log from serve api
jtoar Jan 20, 2024
8394041
style
jtoar Jan 20, 2024
4f20d4b
work on options
jtoar Jan 20, 2024
5898eae
work on entry points
jtoar Jan 20, 2024
f417191
use concurrently in serve
jtoar Jan 21, 2024
b979239
fix typo in error
jtoar Jan 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor some tests
  • Loading branch information
jtoar committed Jan 19, 2024
commit 8a283b58c524279b358b56d4653f99d3213206f3
26 changes: 15 additions & 11 deletions packages/api-server/src/__tests__/createServer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,6 @@ describe('createServer', () => {
it('`apiRootPath` prefixes all routes', async () => {
const server = await createServer({ apiRootPath: '/api' })

await server.listen({
port: 8910,
})

const res = await server.inject({
method: 'GET',
url: '/api/hello',
Expand Down Expand Up @@ -103,7 +99,7 @@ describe('createServer', () => {
console.warn = jest.fn()

// Here we create a logger that outputs to an array.
const loggerLogs = []
const loggerLogs: string[] = []
const stream = build(async (source) => {
for await (const obj of source) {
loggerLogs.push(obj)
Expand Down Expand Up @@ -182,7 +178,13 @@ describe('createServer', () => {
const server = await createServer()
await server.start()

expect(server.server.address().port).toBe(getConfig().api.port)
const address = server.server.address()

if (!address || typeof address === 'string') {
throw new Error('No address or address is a string')
}

expect(address.port).toBe(getConfig().api.port)

await server.close()
})
Expand All @@ -193,7 +195,13 @@ describe('createServer', () => {
const server = await createServer()
await server.start()

expect(server.server.address().port).toBe(+process.env.REDWOOD_API_PORT)
const address = server.server.address()

if (!address || typeof address === 'string') {
throw new Error('No address or address is a string')
}

expect(address.port).toBe(+process.env.REDWOOD_API_PORT)

await server.close()

Expand Down Expand Up @@ -298,7 +306,3 @@ describe('parseArgs', () => {
expect(args).toEqual({})
})
})

// it.todo('`fastifyServerOptions` configures the fastify server')
// it.todo('returns a fastify server instance that can register plugins')
// it.todo('fastifyServerOptions defaults to...')