-
Notifications
You must be signed in to change notification settings - Fork 2.3k
[ty] Move server tests as integration tests #19522
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
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,9 @@ use anyhow::Context; | |
| use lsp_server::Connection; | ||
| use ruff_db::system::{OsSystem, SystemPathBuf}; | ||
|
|
||
| use crate::server::Server; | ||
| pub use crate::logging::{LogLevel, init_logging}; | ||
| pub use crate::server::Server; | ||
| pub use crate::session::ClientOptions; | ||
|
Comment on lines
+7
to
+9
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are required by the mock server implementation. |
||
| pub use document::{NotebookDocument, PositionEncoding, TextDocument}; | ||
| pub(crate) use session::{DocumentQuery, Session}; | ||
|
|
||
|
|
@@ -14,9 +16,6 @@ mod server; | |
| mod session; | ||
| mod system; | ||
|
|
||
| #[cfg(test)] | ||
| pub mod test; | ||
|
|
||
| pub(crate) const SERVER_NAME: &str = "ty"; | ||
| pub(crate) const DIAGNOSTIC_NAME: &str = "ty"; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| use anyhow::Result; | ||
| use ruff_db::system::SystemPath; | ||
| use ty_server::ClientOptions; | ||
|
|
||
| use crate::TestServerBuilder; | ||
|
|
||
| #[test] | ||
| fn empty_workspace_folders() -> Result<()> { | ||
| let server = TestServerBuilder::new()? | ||
| .build()? | ||
| .wait_until_workspaces_are_initialized()?; | ||
|
|
||
| let initialization_result = server.initialization_result().unwrap(); | ||
|
|
||
| insta::assert_json_snapshot!("initialization", initialization_result); | ||
|
|
||
| Ok(()) | ||
| } | ||
|
|
||
| #[test] | ||
| fn single_workspace_folder() -> Result<()> { | ||
| let workspace_root = SystemPath::new("foo"); | ||
| let server = TestServerBuilder::new()? | ||
| .with_workspace(workspace_root, ClientOptions::default())? | ||
| .build()? | ||
| .wait_until_workspaces_are_initialized()?; | ||
|
|
||
| let initialization_result = server.initialization_result().unwrap(); | ||
|
|
||
| insta::assert_json_snapshot!("initialization_with_workspace", initialization_result); | ||
|
|
||
| Ok(()) | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is still required because we conditionally add the
serde::Serializeattribute to theClientOptionsand other nested structs.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.
Could we use
assert_debug_snapshotinstead so that we don't need the serde serialization?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.
That is not pretty ;)
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.
Is it? Isn't it almost the same as JSON (unless we add some manual implementations):
https://insta.rs/docs/serializers/#debug
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 would also be fine to simply always derive
Serializefor those types. It's not that many and it simplifies the crate setupThere 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, I think implementing
Serializeunconditionally seems fine, I'll do it as a quick follow up tomorrow morning.