]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-replace-var.c
util-lib: split our string related calls from util.[ch] into its own file string...
[thirdparty/systemd.git] / src / test / test-replace-var.c
CommitLineData
6e6fb527
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2012 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include <string.h>
23
6e6fb527
LP
24#include "macro.h"
25#include "replace-var.h"
07630cea
LP
26#include "string-util.h"
27#include "util.h"
6e6fb527
LP
28
29static char *lookup(const char *variable, void *userdata) {
30 return strjoin("<<<", variable, ">>>", NULL);
31}
32
33int main(int argc, char *argv[]) {
34 char *r;
35
36 assert_se(r = replace_var("@@@foobar@xyz@HALLO@foobar@test@@testtest@TEST@...@@@", lookup, NULL));
37 puts(r);
38 assert_se(streq(r, "@@@foobar@xyz<<<HALLO>>>foobar@test@@testtest<<<TEST>>>...@@@"));
39 free(r);
40
41 assert_se(r = strreplace("XYZFFFFXYZFFFFXYZ", "XYZ", "ABC"));
42 puts(r);
43 assert_se(streq(r, "ABCFFFFABCFFFFABC"));
44 free(r);
45
46 return 0;
47}