Archived
1
0
Commit Graph

405 Commits

Author SHA1 Message Date
236717ee98 fix: update modulePathIgnorePatterns for jest 2021-02-22 13:41:09 -07:00
34c6ec4c07 feat: add globalSetup for testing 2021-02-22 13:41:09 -07:00
3033c8f9a2 feat: add test to visit go home in app menu 2021-02-22 13:41:08 -07:00
c2f1a2dace feat: add test for login page 2021-02-22 13:41:08 -07:00
2d8b785fb8 Fix health socket not getting client messages
Forgot to resume. Went ahead and did the same for the test plugin
although it only sends messages and doesn't receive any.
2021-02-16 15:01:46 -06:00
7f80d152d3 Add healthz tests 2021-02-16 15:01:45 -06:00
59ba78c028 Force shutdown sockets during tests 2021-02-16 15:01:45 -06:00
de11753569 Fill req.args for tests 2021-02-12 16:05:15 -06:00
8344e2062a Merge pull request #2622 from cdr/plugin-additions 2021-02-10 16:45:00 -06:00
de9491d5a6 Mark code-server as a virtual module 2021-02-10 13:13:23 -06:00
4f16087a94 Resolve code-server from the root
This fixes the lint script but unfortunately breaks my editor.
2021-02-09 16:36:26 -06:00
e098df0766 Fix code-server module not being provided in Jest 2021-02-09 15:23:08 -06:00
c7c851dd01 feat: add tests for src/common/http 2021-02-09 13:13:19 -07:00
9647d65e52 Add code-server alias to eslint 2021-02-09 13:33:31 -06:00
c78f56b334 Expose HttpError to plugins
This will let them throw and show nice errors more easily.
2021-02-09 13:09:38 -06:00
5505959f7e Expose websocket server to plugins
Same reasoning used when exposing Express.
2021-02-09 13:09:34 -06:00
055e0ef9ec Provide WsRouter to plugins 2021-02-09 13:09:27 -06:00
fb37473e72 Load only test plugin during tests
The other plugins in my path were causing the tests to fail.
2021-02-09 12:20:30 -06:00
a8e928798b Re-export express for plugins 2021-02-09 12:19:38 -06:00
5f1fab7d27 Re-export logger field for plugins 2021-02-09 12:19:36 -06:00
a2a6122252 feat: add tests for constants 2021-02-08 16:21:37 -07:00
164d11e027 chore: clean up comment in util.test 2021-02-08 16:20:43 -07:00
7f629c3675 Merge pull request #2671 from cdr/add-unit-tests
feat(testing): add unit tests for common/util
2021-02-08 11:32:55 -07:00
c08e3bb06d Add /absproxy to remove --proxy-path-passthrough
See https://github.com/cdr/code-server/issues/2222#issuecomment-765235938

Makes way more sense.
2021-02-05 11:44:34 -05:00
4f6efced68 feat: add tests for getOptions 2021-02-04 15:18:44 -07:00
323339d15a feat: add jsdom for browser-ish tests 2021-02-04 15:18:43 -07:00
3cebfcd447 feat: add tests for logError 2021-02-04 15:18:43 -07:00
71cf459ece feat: add tests for common/util 2021-02-04 15:18:43 -07:00
6685a3e364 feat: update workflow 2021-02-01 15:11:45 -07:00
66fe663e33 feat: add playwright 2021-02-01 15:11:28 -07:00
966e9cc238 Merge pull request #2609 from cdr/proxy-res-d629
Fix body proxying, redirect proxying and add tests
2021-02-01 11:39:44 -05:00
a60f61f9b3 proxy.test.ts: Add POST body test and redirection tests
Closes #2377
2021-02-01 11:16:52 -05:00
d7f06975a6 test: Switch from leaked-handles to wtfnode (#2604)
See my comments at
https://github.com/cdr/code-server/pull/2563#issuecomment-763394741
2021-02-01 11:06:49 -05:00
102f51ce1f fix: surpress console log in cli test 2021-01-25 16:34:43 -07:00
3044224729 feat: add support for code coverage shield 2021-01-25 16:21:07 -07:00
05beccf671 refactor: move jest around and add code coverage 2021-01-22 14:18:45 -07:00
883dd13850 refactor: move jest and add package.json to /test 2021-01-21 14:06:49 -07:00
850c7e1a91 fix: add void for resolve in socket test 2021-01-21 10:11:10 -07:00
0a07d67c8d fix: prevent mocha/jest types conlict
Modify the tsconfig.json in lib/vscode/src/build.

This adds the flag skipLibCheck: true to tell TypeScript
to not type-check the declaration files at build time.

We need to add this because otherwise it checks the declaration
files and reports an error of duplicate type definitions
because we use Jest for our tests and they use Mocha and they
both use the global namespace "test" in their .d.ts files.
2021-01-21 10:11:09 -07:00
de7d0394ae refactor: tests from mocha to jest 2021-01-21 10:10:32 -07:00
cef7d42652 feat: setup jest 2021-01-21 10:10:32 -07:00
c32d8b155f heart.ts: Fix leak when server closes
This had me very confused for quite a while until I did a binary search
inspection on route/index.ts. Only with the heart.beat line commented
out did my tests pass without leaking.

They weren't leaking fds but just this heartbeat timer and node of
course prints just fds that are active when it detects some sort of leak
I guess and that made the whole thing very confusing. These fds are not
leaked and will close when node's event loop detects there are no more
callbacks to run.

no of handles 3

tcp stream {
  fd: 20,
  readable: false,
  writable: true,
  address: {},
  serverAddr: null
}

tcp stream {
  fd: 22,
  readable: false,
  writable: true,
  address: {},
  serverAddr: null
}

tcp stream {
  fd: 23,
  readable: true,
  writable: false,
  address: {},
  serverAddr: null
}

It kept printing the above text again and again for 60s and then the
test binary times out I think. I'm not sure if it was node printing the
stuff above or if it was a mocha thing. But it was really confusing...

cc @code-asher for thoughts on what was going on.

edit: It was the leaked-handles import in socket.test.ts!!!
Not sure if we should keep it, this was really confusing and misleading.
2021-01-20 02:06:44 -05:00
5c06646f58 Formatting and linting fixes 2021-01-20 02:06:44 -05:00
60233d0974 test/proxy.test.ts: Implement 2021-01-20 02:06:44 -05:00
240c8e266e test: Implement integration.ts for near full stack integration testing 2021-01-20 02:06:44 -05:00
64e915de4a test: Rename testutil.ts to httpserver.ts 2021-01-20 02:06:44 -05:00
d3074278ca app.ts: Fix createApp to log all http server errors
cc @code-asher
2021-01-20 02:06:43 -05:00
8acb2aec11 plugin.test.ts: Switch to testutil.HttpServer 2021-01-20 02:06:43 -05:00
ea1949e440 test: Add testutil.HttpServer
The goal is to remove supertest as it does not support typescript well
and there's really no good reason for the dependency. Also no websocket
testing support.
2021-01-20 02:06:43 -05:00
60c270aef5 cli: hashedPassword -> hashed-password (#2454)
Capital letters in the CLI are evil.

cc @code-asher
2020-12-18 12:20:38 -05:00