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

nixosTests.moinmoin: port to python #74753

Merged
merged 1 commit into from
Dec 4, 2019

Conversation

mmilata
Copy link
Member

@mmilata mmilata commented Nov 30, 2019

Motivation for this change

#72828

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
  • Built on platform(s)
    • NixOS
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Fits CONTRIBUTING.md.
Notify maintainers

Sorry, something went wrong.

@ofborg ofborg bot added 6.topic: nixos Issues or PRs affecting NixOS modules, or package usability issues specific to NixOS 10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin 10.rebuild-linux: 0 This PR does not cause any packages to rebuild on Linux labels Nov 30, 2019
machine.wait_for_file("/run/moin/ExampleWiki/gunicorn.sock")

page = machine.succeed("curl -L http://localhost/")
assert re.search(r"If you have just installed", page)
Copy link
Contributor

Choose a reason for hiding this comment

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

if it is just a plain substring that you need to match, then REs are a big oversided. How about:

Suggested change
assert re.search(r"If you have just installed", page)
assert "If you have just installed" in machine.succeed("curl -L http://localhost/")

out = machine.succeed(
"moin-ExampleWiki account create --name=admin --email=admin@example.com --password=foo 2>&1"
)
assert re.search(r"status success", out)
Copy link
Contributor

Choose a reason for hiding this comment

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

same here.

@mmilata mmilata force-pushed the moinmoin-python-test branch from 5ce3347 to 0168f41 Compare December 1, 2019 15:45
@mmilata
Copy link
Member Author

mmilata commented Dec 1, 2019

@tfc good point, thanks, fixed, PTAL

@mmahut
Copy link
Member

mmahut commented Dec 4, 2019

@GrahamcOfBorg test moinmoin

@mmahut mmahut merged commit 25f7bd7 into NixOS:master Dec 4, 2019
@mmilata mmilata deleted the moinmoin-python-test branch December 4, 2019 23:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
6.topic: nixos Issues or PRs affecting NixOS modules, or package usability issues specific to NixOS 10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin 10.rebuild-linux: 0 This PR does not cause any packages to rebuild on Linux
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants