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 version checker #6153

Merged
merged 3 commits into from
Apr 23, 2024
Merged

Add tests for version checker #6153

merged 3 commits into from
Apr 23, 2024

Conversation

dlon
Copy link
Member

@dlon dlon commented Apr 19, 2024

Fix DES-870.


This change is Reviewable

Copy link

linear bot commented Apr 19, 2024

Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

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

Reviewed 2 of 2 files at r1, 2 of 2 files at r2, 1 of 1 files at r3, 1 of 1 files at r4, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @dlon)


mullvad-daemon/src/version_check.rs line 622 at r2 (raw file):

    /// Test whether check immediately fetches version info if it's non-existent
    #[tokio::test(start_paused = true)]
    async fn test_version_check_run_immediate() {

If I run cargo test in the mullvad-daemon crate, I get the following error

$ cargo test
   Compiling mullvad-daemon v0.0.0 (/home/markus/projects/mullvad/app/mullvad-daemon)
error[E0599]: no method named `start_paused` found for struct `tokio::runtime::Builder` in the current scope
   --> mullvad-daemon/src/version_check.rs:620:5
    |
620 |     #[tokio::test(start_paused = true)]
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ private field, not a method
    |
    = note: this error originates in the attribute macro `tokio::test` (in Nightly builds, run with -Z macro-backtrace for more info)

It can be fixed by enabling the test-util feature for tokio

# mullvad-daemon/Cargo.toml
[dev-dependencies]
talpid-time = { path = "../talpid-time", features = ["test"] }
tokio = { workspace = true, features =  ["test-util"] }

Code quote:

    #[tokio::test(start_paused = true)]
    async fn test_version_check_run_immediate() {

Copy link
Member Author

@dlon dlon left a comment

Choose a reason for hiding this comment

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

Reviewable status: 3 of 4 files reviewed, 1 unresolved discussion (waiting on @MarkusPettersson98)


mullvad-daemon/src/version_check.rs line 622 at r2 (raw file):

Previously, MarkusPettersson98 (Markus Pettersson) wrote…

If I run cargo test in the mullvad-daemon crate, I get the following error

$ cargo test
   Compiling mullvad-daemon v0.0.0 (/home/markus/projects/mullvad/app/mullvad-daemon)
error[E0599]: no method named `start_paused` found for struct `tokio::runtime::Builder` in the current scope
   --> mullvad-daemon/src/version_check.rs:620:5
    |
620 |     #[tokio::test(start_paused = true)]
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ private field, not a method
    |
    = note: this error originates in the attribute macro `tokio::test` (in Nightly builds, run with -Z macro-backtrace for more info)

It can be fixed by enabling the test-util feature for tokio

# mullvad-daemon/Cargo.toml
[dev-dependencies]
talpid-time = { path = "../talpid-time", features = ["test"] }
tokio = { workspace = true, features =  ["test-util"] }

Fixed! Thanks.

Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

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

Reviewed 1 of 1 files at r5, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

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

Reviewed 1 of 1 files at r6, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@dlon dlon force-pushed the version-check-test branch from 04c0ee9 to bd4f53f Compare April 19, 2024 14:55
Copy link
Contributor

@hulthe hulthe left a comment

Choose a reason for hiding this comment

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

Reviewed 1 of 2 files at r8, 1 of 1 files at r9, all commit messages.
Reviewable status: 3 of 4 files reviewed, 4 unresolved discussions (waiting on @dlon and @MarkusPettersson98)


mullvad-daemon/src/version_check.rs line 221 at r9 (raw file):

    /// Also, if we are currently have a pending [GetVersionInfo][rvc] command, respond to it.
    ///
    /// [rvc]: VersionUpdaterCommand::GetVersionInfo

This docstr looks outdated


mullvad-daemon/src/version_check.rs line 401 at r9 (raw file):

impl UpdateContext {
    /// Write [Self::last_app_version_info], if any, to the cache file ([VERSION_INFO_FILENAME]).
    /// Also notify listener

Broken doc link


mullvad-daemon/src/version_check.rs line 418 at r9 (raw file):

            let _ = tokio::io::copy(&mut read_buf, &mut file)
                .await
                .map_err(Error::WriteVersionCache)?;

Nit: Would tokio::fs::write look nicer?


mullvad-daemon/src/version_check.rs line 739 at r9 (raw file):

            latest_beta: "2024.1-beta1".to_owned(),
        }
    }

Very cool test setup. Didn't know tokio had these features.

Copy link
Member Author

@dlon dlon left a comment

Choose a reason for hiding this comment

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

Reviewable status: 3 of 4 files reviewed, 3 unresolved discussions (waiting on @hulthe and @MarkusPettersson98)


mullvad-daemon/src/version_check.rs line 221 at r9 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

This docstr looks outdated

Done.


mullvad-daemon/src/version_check.rs line 401 at r9 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

Broken doc link

Done.


mullvad-daemon/src/version_check.rs line 418 at r9 (raw file):

Previously, hulthe (Joakim Hulthe) wrote…

Nit: Would tokio::fs::write look nicer?

It would! Done.

@dlon dlon force-pushed the minor-version-check-cleanup branch 2 times, most recently from a76bf40 to 8984b77 Compare April 23, 2024 12:58
@dlon dlon force-pushed the version-check-test branch from 98b46a1 to bc1df76 Compare April 23, 2024 13:22
hulthe
hulthe previously approved these changes Apr 23, 2024
Copy link
Contributor

@hulthe hulthe left a comment

Choose a reason for hiding this comment

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

Reviewed 1 of 1 files at r12, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@dlon dlon force-pushed the minor-version-check-cleanup branch from 8984b77 to ab6b6bb Compare April 23, 2024 13:31
Base automatically changed from minor-version-check-cleanup to main April 23, 2024 13:32
@dlon dlon dismissed stale reviews from hulthe and MarkusPettersson98 April 23, 2024 13:32

The base branch was changed.

@dlon dlon force-pushed the version-check-test branch from bc1df76 to 9e1f55d Compare April 23, 2024 13:34
Copy link
Contributor

@MarkusPettersson98 MarkusPettersson98 left a comment

Choose a reason for hiding this comment

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

Reviewed 3 of 3 files at r13, 3 of 3 files at r14, all commit messages.
Reviewable status: :shipit: complete! all files reviewed, all discussions resolved

@dlon dlon merged commit 9ceb3be into main Apr 23, 2024
46 checks passed
@dlon dlon deleted the version-check-test branch April 23, 2024 14:08
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.

3 participants