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

refactor: move tests to the test dir #2257

Merged
merged 5 commits into from
Dec 11, 2023

Conversation

SteveLauC
Copy link
Member

@SteveLauC SteveLauC commented Dec 10, 2023

What does this PR do

Move the tests in the src/xxx.rs to the corresponding test_xxx.rs in the test directory as discussed in this comment

How to review this PR

The code changes are fairly big, but the real changes should be very small, the best way of reviewing this PR would be checking the changes in xxx.rs, then take a look at test_xxx.rs to see if there is anything that should not be moved or accidentally changed.

I have left some comments on places where special attention is needed, hope that would make review easier.

Checklist:

  • I have read CONTRIBUTING.md
  • I have written necessary tests and rustdoc comments
  • A change log has been added if this PR modifies nix's API

@@ -29,7 +29,6 @@ mod test_poll;
target_os = "haiku"
)))]
mod test_pty;
mod test_resource;
Copy link
Member Author

Choose a reason for hiding this comment

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

resource.rs and timer.rs are under src/sys, so I moved test_resource.rs and test_timer.rs from test/ to test/sys/

Comment on lines -1 to -6
#[cfg(not(any(
target_os = "redox",
target_os = "fuchsia",
solarish,
target_os = "haiku"
)))]
Copy link
Member Author

Choose a reason for hiding this comment

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

This gate and the below one are removed because we gate them at test/sys/mod.rs:

#[cfg(not(any(
    target_os = "redox",
    target_os = "fuchsia",
    solarish,
    target_os = "haiku"
)))]
mod test_resource;

@@ -1774,108 +1774,6 @@ impl<'a> Iterator for IoSliceIterator<'a> {
}
}

// test contains both recvmmsg and timestaping which is linux only
Copy link
Member Author

Choose a reason for hiding this comment

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

Tests in this file have been moved to test/sys/test_socket.rs

udata,
);
assert_eq!(0xdead_beef, actual.ident());
assert_eq!(EventFilter::EVFILT_READ, actual.filter().unwrap());
Copy link
Member Author

Choose a reason for hiding this comment

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

Originally, this line of code was:

let filter = actual.kevent.filter;
assert_eq!(libc::EVFILT_READ, filter);

But the kevent field (libc::kevent) of KEvent is private, so I changed it to the corresponding public method .filter()

assert_eq!(libc::EV_ONESHOT | libc::EV_ADD, actual.flags().bits());
assert_eq!(libc::NOTE_CHILD | libc::NOTE_EXIT, actual.fflags().bits());
assert_eq!(data, actual.data());
assert_eq!(udata, actual.udata());
Copy link
Member Author

Choose a reason for hiding this comment

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

There was 2 type casts:

assert_eq!(udata as type_of_udata, actual.udata() as type_of_udata);

But it is not necessary as both sides will return a value in type libc::intptr_t

@SteveLauC SteveLauC added this pull request to the merge queue Dec 11, 2023
Merged via the queue into nix-rust:master with commit c0d8ad4 Dec 11, 2023
@SteveLauC SteveLauC deleted the move_tests_to_test_dir branch December 11, 2023 22:44
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.

2 participants