summaryrefslogtreecommitdiff
path: root/source4/torture/local/util_strlist.c
blob: 5887c01c6a6656ab87b8a719675ce963ac18a86f (plain)
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
/* 
   Unix SMB/CIFS implementation.

   util_strlist testing

   Copyright (C) Jelmer Vernooij 2005
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"
#include "torture/torture.h"
#include "torture/ui.h"

static const char *test_lists_shell_strings[] = {
	"",
	"foo",
	"foo bar",
	"foo bar \"bla \"",
	"foo \"\" bla",
	"bla \"\"\"\" blie",
	NULL
};

static BOOL test_lists_shell(struct torture_context *test, const void *_data)
{
	const char *data = _data;
	const char **ret1, **ret2, *tmp;
	BOOL match = True;

	ret1 = str_list_make_shell(test, data, " ");
	tmp = str_list_join_shell(test, ret1, ' ');
	ret2 = str_list_make_shell(test, tmp, " ");

	if ((ret1 == NULL || ret2 == NULL) && ret2 != ret1) {
		match = False;
	} else {
		int j;
		for (j = 0; ret1[j] && ret2[j]; j++) {
			if (strcmp(ret1[j], ret2[j]) != 0) {
				match = False;
				break;
			}
		}

		if (ret1[j] || ret2[j])
			match = False;
	}

	if (!match) {
		torture_fail(test, "str_list_{make,join}_shell: Error double parsing, first run:\n%s\nSecond run: \n%s", data, tmp);
		return False;
	}

	return True;
}

BOOL torture_local_util_strlist(struct torture_context *torture) 
{
	struct torture_suite *suite = torture_suite_create(torture, "util_strlist");
	int i;

	for (i = 0; test_lists_shell_strings[i]; i++) {
		torture_suite_add_simple_tcase(suite, 
									   "lists_shell", test_lists_shell,
									   &test_lists_shell_strings[i]);
	}

	return torture_run_suite(torture, suite);
}