-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathwiremock.nix
114 lines (107 loc) · 2.57 KB
/
wiremock.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{ service }:
{
pkgs,
config,
lib,
...
}:
with lib;
let
cfg = config.services."wiremock-${service}";
mappingsFormat = pkgs.formats.json { };
rootDir =
let
mappingsJson = mappingsFormat.generate "mappings.json" { mappings = cfg.mappings; };
in
pkgs.runCommand "wiremock-root"
{
preferLocalBuild = true;
allowSubstitutes = false;
}
''
mkdir -p $out
cd $out
mkdir mappings
cp ${mappingsJson} mappings/mappings.json
mkdir __files
${lib.concatMapStrings (attrs: "cp ${attrs.path} __files/${attrs.name}") cfg.files}
'';
in
{
options.services."wiremock-${service}" = {
enable = mkEnableOption "WireMock";
port = mkOption {
type = types.int;
default = 8080;
};
verbose = mkOption {
type = types.bool;
default = false;
};
files = mkOption {
description = ''
List of files to include in the __files directory for access when stubbing.
'';
default = [ ];
example = {
name = "file-name.json";
path = "<nix-store path>";
};
};
mappings = mkOption {
type = mappingsFormat.type;
description = ''
See the <https://wiremock.org/docs/stubbing/> for more information.
'';
default = [ ];
example = [
{
request = {
method = "GET";
url = "/body";
};
response = {
status = 200;
headers."Content-Type" = "text/plain";
body = "Literal text to put in the body";
};
}
{
request = {
method = "GET";
url = "/json";
};
response = {
status = 200;
headers."Content-Type" = "application/json";
jsonBody = {
someField = "someValue";
};
};
}
];
};
};
config = mkIf cfg.enable {
systemd.services."wiremock-${service}" =
let
arguments = [
"--port ${toString cfg.port}"
"--root-dir ${rootDir}"
"--disable-banner"
] ++ lib.optional cfg.verbose "--verbose";
in
{
description = "registry server";
wantedBy = [
"multi-user.target"
"nginx.service"
];
serviceConfig = {
ExecStart = "${pkgs.writeShellScriptBin "wiremock-${service}-init" ''
${pkgs.wiremock}/bin/wiremock ${lib.concatStringsSep " " arguments} "$@"
''}/bin/wiremock-${service}-init";
};
};
};
}