Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8ec6df139538
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b52ff5335bb
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 27, 2019

  1. nixos: add test for uwsgi

    LnL7 committed May 27, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    8ce93e2 View commit details

Commits on Jun 8, 2019

  1. Merge pull request #62133 from LnL7/nixos-uwsgi

    nixos: add test for uwsgi
    LnL7 authored Jun 8, 2019
    Copy the full SHA
    9b52ff5 View commit details
Showing with 39 additions and 0 deletions.
  1. +1 −0 nixos/tests/all-tests.nix
  2. +38 −0 nixos/tests/uwsgi.nix
1 change: 1 addition & 0 deletions nixos/tests/all-tests.nix
Original file line number Diff line number Diff line change
@@ -248,6 +248,7 @@ in
transmission = handleTest ./transmission.nix {};
udisks2 = handleTest ./udisks2.nix {};
upnp = handleTest ./upnp.nix {};
uwsgi = handleTest ./uwsgi.nix {};
vault = handleTest ./vault.nix {};
virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.nix {};
wireguard = handleTest ./wireguard {};
38 changes: 38 additions & 0 deletions nixos/tests/uwsgi.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import ./make-test.nix ({ pkgs, ... }:
{
name = "uwsgi";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ lnl7 ];
};
machine = { pkgs, ... }: {
services.uwsgi.enable = true;
services.uwsgi.plugins = [ "python3" ];
services.uwsgi.instance = {
type = "emperor";
vassals.hello = {
type = "normal";
master = true;
workers = 2;
http = ":8000";
module = "wsgi:application";
chdir = pkgs.writeTextDir "wsgi.py" ''
from flask import Flask
application = Flask(__name__)
@application.route("/")
def hello():
return "Hello World!"
'';
pythonPackages = self: with self; [ flask ];
};
};
};

testScript =
''
$machine->waitForUnit('multi-user.target');
$machine->waitForUnit('uwsgi.service');
$machine->waitForOpenPort(8000);
$machine->succeed('curl -v 127.0.0.1:8000 | grep "Hello World!"');
'';
})