mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +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
67 lines
2.0 KiB
Nix
67 lines
2.0 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
testPort = 8888;
|
|
testUser = "testerman";
|
|
testPass = "password";
|
|
testEmail = "test.testerman@test.com";
|
|
in
|
|
{
|
|
name = "atuin";
|
|
meta.maintainers = with lib.maintainers; [ devusb ];
|
|
|
|
nodes = {
|
|
server =
|
|
{ ... }:
|
|
{
|
|
services.postgresql.enable = true;
|
|
|
|
services.atuin = {
|
|
enable = true;
|
|
port = testPort;
|
|
host = "0.0.0.0";
|
|
openFirewall = true;
|
|
openRegistration = true;
|
|
};
|
|
};
|
|
|
|
client = { ... }: { };
|
|
|
|
};
|
|
|
|
testScript = with pkgs; ''
|
|
start_all()
|
|
|
|
# wait for atuin server startup
|
|
server.wait_for_unit("atuin.service")
|
|
server.wait_for_open_port(${toString testPort})
|
|
|
|
# configure atuin client on server node
|
|
server.execute("mkdir -p ~/.config/atuin")
|
|
server.execute("echo 'sync_address = \"http://localhost:${toString testPort}\"' > ~/.config/atuin/config.toml")
|
|
|
|
# register with atuin server on server node
|
|
server.succeed("${atuin}/bin/atuin register -u ${testUser} -p ${testPass} -e ${testEmail}")
|
|
_, key = server.execute("${atuin}/bin/atuin key")
|
|
|
|
# store test record in atuin server and sync
|
|
server.succeed("ATUIN_SESSION=$(${atuin}/bin/atuin uuid) ${atuin}/bin/atuin history start 'shazbot'")
|
|
server.succeed("${atuin}/bin/atuin sync")
|
|
|
|
# configure atuin client on client node
|
|
client.execute("mkdir -p ~/.config/atuin")
|
|
client.execute("echo 'sync_address = \"http://server:${toString testPort}\"' > ~/.config/atuin/config.toml")
|
|
|
|
# log in to atuin server on client node
|
|
client.succeed(f"${atuin}/bin/atuin login -u ${testUser} -p ${testPass} -k \"{key}\"")
|
|
|
|
# pull records from atuin server
|
|
client.succeed("${atuin}/bin/atuin sync -f")
|
|
|
|
# check for test record
|
|
client.succeed("ATUIN_SESSION=$(${atuin}/bin/atuin uuid) ${atuin}/bin/atuin history list | grep shazbot")
|
|
'';
|
|
}
|
|
)
|