mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
132 lines
4.2 KiB
Nix
132 lines
4.2 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
let
|
|
client =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.seafile-shared
|
|
pkgs.curl
|
|
];
|
|
};
|
|
in
|
|
{
|
|
name = "seafile";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [
|
|
kampfschlaefer
|
|
schmittlauch
|
|
];
|
|
};
|
|
|
|
nodes = {
|
|
server =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
services.seafile = {
|
|
enable = true;
|
|
ccnetSettings.General.SERVICE_URL = "http://server";
|
|
seafileSettings.fileserver.host = "unix:/run/seafile/server.sock";
|
|
adminEmail = "admin@example.com";
|
|
initialAdminPassword = "seafile_password";
|
|
};
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts."server" = {
|
|
locations."/".proxyPass = "http://unix:/run/seahub/gunicorn.sock";
|
|
locations."/seafhttp" = {
|
|
proxyPass = "http://unix:/run/seafile/server.sock";
|
|
extraConfig = ''
|
|
rewrite ^/seafhttp(.*)$ $1 break;
|
|
client_max_body_size 0;
|
|
proxy_connect_timeout 36000s;
|
|
proxy_read_timeout 36000s;
|
|
proxy_send_timeout 36000s;
|
|
send_timeout 36000s;
|
|
proxy_http_version 1.1;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 80 ];
|
|
};
|
|
};
|
|
client1 = client pkgs;
|
|
client2 = client pkgs;
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
|
|
with subtest("start seaf-server"):
|
|
server.wait_for_unit("seaf-server.service")
|
|
server.wait_for_file("/run/seafile/seafile.sock")
|
|
|
|
with subtest("start seahub"):
|
|
server.wait_for_unit("seahub.service")
|
|
server.wait_for_unit("nginx.service")
|
|
server.wait_for_file("/run/seahub/gunicorn.sock")
|
|
|
|
with subtest("client1 fetch seahub page"):
|
|
client1.succeed("curl -L http://server | grep 'Log In' >&2")
|
|
|
|
with subtest("client1 connect"):
|
|
client1.wait_for_unit("default.target")
|
|
client1.succeed("seaf-cli init -d . >&2")
|
|
client1.succeed("seaf-cli start >&2")
|
|
client1.succeed(
|
|
"seaf-cli list-remote -s http://server -u admin\@example.com -p seafile_password >&2"
|
|
)
|
|
|
|
libid = client1.succeed(
|
|
'seaf-cli create -s http://server -n test01 -u admin\@example.com -p seafile_password -t "first test library"'
|
|
).strip()
|
|
|
|
client1.succeed(
|
|
"seaf-cli list-remote -s http://server -u admin\@example.com -p seafile_password |grep test01"
|
|
)
|
|
client1.fail(
|
|
"seaf-cli list-remote -s http://server -u admin\@example.com -p seafile_password |grep test02"
|
|
)
|
|
|
|
client1.succeed(
|
|
f"seaf-cli download -l {libid} -s http://server -u admin\@example.com -p seafile_password -d . >&2"
|
|
)
|
|
|
|
client1.wait_until_succeeds("seaf-cli status |grep synchronized >&2")
|
|
|
|
client1.succeed("ls -la >&2")
|
|
client1.succeed("ls -la test01 >&2")
|
|
|
|
client1.execute("echo bla > test01/first_file")
|
|
|
|
client1.wait_until_succeeds("seaf-cli status |grep synchronized >&2")
|
|
|
|
with subtest("client2 sync"):
|
|
client2.wait_for_unit("default.target")
|
|
|
|
client2.succeed("seaf-cli init -d . >&2")
|
|
client2.succeed("seaf-cli start >&2")
|
|
|
|
client2.succeed(
|
|
"seaf-cli list-remote -s http://server -u admin\@example.com -p seafile_password >&2"
|
|
)
|
|
|
|
libid = client2.succeed(
|
|
"seaf-cli list-remote -s http://server -u admin\@example.com -p seafile_password |grep test01 |cut -d' ' -f 2"
|
|
).strip()
|
|
|
|
client2.succeed(
|
|
f"seaf-cli download -l {libid} -s http://server -u admin\@example.com -p seafile_password -d . >&2"
|
|
)
|
|
|
|
client2.wait_until_succeeds("seaf-cli status |grep synchronized >&2")
|
|
|
|
client2.succeed("ls -la test01 >&2")
|
|
|
|
client2.succeed('[ `cat test01/first_file` = "bla" ]')
|
|
'';
|
|
}
|
|
)
|