Re-enable windows path tests disabled by #20744 #24251

pull ryanofsky wants to merge 2 commits into bitcoin:master from ryanofsky:pr/wp changing 4 files +5 −9
  1. ryanofsky commented at 3:46 pm on February 3, 2022: member

    Reenable some broken tests as discussed #20744 (review) and #20744 (review)

    Fix windows test cases broken in #20744, by passing normalized path arguments to fs::equivalent, fs::exists, and fs::is_directory, instead of non-normalized arguments. Also re-enable the tests.

    It is possible these changes also fix real init behavior on windows when -datadir or -walletdir paths with trailing dots or dashes are used, but it’s not clear because I only tested on wine.

  2. ryanofsky marked this as a draft on Feb 3, 2022
  3. DrahtBot added the label Wallet on Feb 3, 2022
  4. Re-enable util_datadir check disabled in #20744
    This should also fix an assert error if a -datadir with a trailing slash
    is used on windows. This appears to be a real error and regression
    introduced with #20744.
    
    On windows (or at least wine), fs calls that actuallly access the
    filesystem like fs::equivalent or fs::exists seem to treat directory
    paths with trailing slashes as not existing, so it's necessary to
    normalize these paths before using them. This fix adds a
    path::lexically_normal() call to the failing assert so it passes.
    80cd64e842
  5. Re-enable walletinit_verify_walletdir_no_trailing2 test disabled in #20744
    This should also fix an init error if a -walletdir with a trailing slash
    is used on windows. This appears to be a real error and regression
    introduced with #20744.
    
    On windows (or at least wine), fs calls that actuallly access the
    filesystem like fs::equivalent or fs::exists seem to treat directory
    paths with trailing slashes as not existing, so it's necessary to
    normalize these paths before using them. This change passes canonical
    paths to fs calls validating the -walletdir path to fix this.
    d216bc8d76
  6. in src/wallet/test/init_tests.cpp:78 in 8287489e7c outdated
    72@@ -73,8 +73,6 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing)
    73     BOOST_CHECK_EQUAL(walletdir, expected_path);
    74 }
    75 
    76-#ifndef WIN32
    77-// Windows does not consider "datadir/wallets//" to be a valid directory path.
    78 BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing2)
    79 {
    80     SetWalletDir(m_walletdir_path_cases["trailing2"]);
    


    MarcoFalke commented at 4:07 pm on February 3, 2022:
    Is this going to cause any read or write outside the m_root_path?

    ryanofsky commented at 2:17 pm on February 4, 2022:

    Is this going to cause any read or write outside the m_root_path?

    I don’t think so, but I’m also not sure where the question is coming from. Wouldn’t you expect invalid paths to trigger errors, not to read or write to completely different locations?

  7. ryanofsky force-pushed on Feb 4, 2022
  8. ryanofsky commented at 2:23 pm on February 4, 2022: member

    Updated 8287489e7c26ecd434bbf07af8e6aa64f41f9bca -> d216bc8d76d7f4e9dce58b0bb732a2d4deaf23b6 (pr/wp.1 -> pr/wp.2, compare) hopefully fixing CI errors.

    I think #20744 might have actually caused real regressions on windows. If -datadir or -walletdir values with trailing slashes are passed, it triggers assert errors or init errors in these two test cases, and it seems like the same problems would happen outside of the test environment.

    Not good to disable tests like this!

  9. hebasto commented at 9:40 pm on February 4, 2022: member

    @ryanofsky

    If -datadir or -walletdir values with trailing slashes are passed, it triggers assert errors or init errors…

    You’re talking about Windows builds only, right?

  10. ryanofsky commented at 10:06 pm on February 4, 2022: member

    @ryanofsky

    If -datadir or -walletdir values with trailing slashes are passed, it triggers assert errors or init errors…

    You’re talking about Windows builds only, right?

    You left off the important part where I said “… in these two test cases.” And I actually only know about wine, not real windows. With wine, I saw fs::exists and similar functions treat directory paths with trailing dots and slashes as if they did not exist. Normalizing or canonicalizing the arguments made these functions work again and let me re-enable these windows tests. I think adding back test coverage here, and making minor changes to make code more reliable are already good things to do, and would have improved #20744. But it also hints that #20744 could also break some real windows configurations. I don’t know for sure.

  11. ryanofsky marked this as ready for review on Feb 4, 2022
  12. MarcoFalke commented at 8:25 am on February 5, 2022: member
    Shouldn’t this be named “wallet: Use canonical path in VerifyWallets”?
  13. hebasto approved
  14. hebasto commented at 8:37 am on February 5, 2022: member

    ACK d216bc8d76d7f4e9dce58b0bb732a2d4deaf23b6, I have reviewed the code and it looks OK, I agree it can be merged.

    Also note that #24265 makes all paths (-datadir, -blocksdir or -walletdir) normalized at the earliest available stage that effectively makes changes in src/util/system.cpp and src/wallet/load.cpp redundant.

  15. DrahtBot commented at 9:15 am on February 5, 2022: member

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Conflicts

    Reviewers, this pull request conflicts with the following ones:

    • #24265 (Drop StripRedundantLastElementsOfPath() function and re-enable Windows tests by hebasto)

    If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.

  16. fanquake merged this on Feb 5, 2022
  17. fanquake closed this on Feb 5, 2022

  18. sidhujag referenced this in commit 44d64d6802 on Feb 6, 2022
  19. DrahtBot locked this on Feb 5, 2023

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2025-04-04 12:12 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me