summaryrefslogtreecommitdiff
path: root/unittest/test_hashutil.c
blob: 2b2dbc9b1e488bb6b1c8153a37f1e393de93c45c (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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// Copyright (C) 2010-2018 Joel Rosdahl
//
// 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 3 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., 51
// Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

// This file contains tests for functions in hashutil.c.

#include "../src/ccache.h"
#include "../src/hashutil.h"
#include "framework.h"
#include "util.h"

TEST_SUITE(hashutil)

TEST(hash_command_output_simple)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

	CHECK(hash_command_output(h1, "echo", "not used"));
	CHECK(hash_command_output(h2, "echo", "not used"));
	CHECK(hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_command_output_space_removal)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

	CHECK(hash_command_output(h1, "echo", "not used"));
	CHECK(hash_command_output(h2, " echo ", "not used"));
	CHECK(hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_command_output_hash_inequality)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

	CHECK(hash_command_output(h1, "echo foo", "not used"));
	CHECK(hash_command_output(h2, "echo bar", "not used"));
	CHECK(!hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_command_output_compiler_substitution)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

	CHECK(hash_command_output(h1, "echo foo", "not used"));
	CHECK(hash_command_output(h2, "%compiler% foo", "echo"));
	CHECK(hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_command_output_stdout_versus_stderr)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

#ifndef _WIN32
	create_file("stderr.sh", "#!/bin/sh\necho foo >&2\n");
	chmod("stderr.sh", 0555);
	CHECK(hash_command_output(h1, "echo foo", "not used"));
	CHECK(hash_command_output(h2, "./stderr.sh", "not used"));
#else
	create_file("stderr.bat", "@echo off\r\necho foo>&2\r\n");
	CHECK(hash_command_output(h1, "echo foo", "not used"));
	CHECK(hash_command_output(h2, "stderr.bat", "not used"));
#endif
	CHECK(hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_multicommand_output)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

#ifndef _WIN32
	create_file("foo.sh", "#!/bin/sh\necho foo\necho bar\n");
	chmod("foo.sh", 0555);
	CHECK(hash_multicommand_output(h2, "echo foo; echo bar", "not used"));
	CHECK(hash_multicommand_output(h1, "./foo.sh", "not used"));
#else
	create_file("foo.bat", "@echo off\r\necho foo\r\necho bar\r\n");
	CHECK(hash_multicommand_output(h2, "echo foo; echo bar", "not used"));
	CHECK(hash_multicommand_output(h1, "foo.bat", "not used"));
#endif
	CHECK(hash_equal(h1, h2));

	hash_free(h2);
	hash_free(h1);
}

TEST(hash_multicommand_output_error_handling)
{
	struct hash *h1 = hash_init();
	struct hash *h2 = hash_init();

	CHECK(!hash_multicommand_output(h2, "false; true", "not used"));

	hash_free(h2);
	hash_free(h1);
}

TEST(check_for_temporal_macros)
{
	const char time_start[] =
		"__TIME__\n"
		"int a;\n";
	const char time_middle[] =
		"#define a __TIME__\n"
		"int a;\n";
	const char time_end[] =
		"#define a __TIME__";

	const char date_start[] =
		"__DATE__\n"
		"int ab;\n";
	const char date_middle[] =
		"#define ab __DATE__\n"
		"int ab;\n";
	const char date_end[] =
		"#define ab __DATE__";

	const char no_temporal[] =
		"#define ab _ _DATE__\n"
		"#define ab __ DATE__\n"
		"#define ab __D ATE__\n"
		"#define ab __DA TE__\n"
		"#define ab __DAT E__\n"
		"#define ab __DATE __\n"
		"#define ab __DATE_ _\n"
		"#define ab _ _TIME__\n"
		"#define ab __ TIME__\n"
		"#define ab __T IME__\n"
		"#define ab __TI ME__\n"
		"#define ab __TIM E__\n"
		"#define ab __TIME __\n"
		"#define ab __TIME_ _\n";

	CHECK(check_for_temporal_macros(time_start + 0, sizeof(time_start) - 0));
	CHECK(!check_for_temporal_macros(time_start + 1, sizeof(time_start) - 1));

	CHECK(check_for_temporal_macros(time_middle + 0, sizeof(time_middle) - 0));
	CHECK(check_for_temporal_macros(time_middle + 1, sizeof(time_middle) - 1));
	CHECK(check_for_temporal_macros(time_middle + 2, sizeof(time_middle) - 2));
	CHECK(check_for_temporal_macros(time_middle + 3, sizeof(time_middle) - 3));
	CHECK(check_for_temporal_macros(time_middle + 4, sizeof(time_middle) - 4));
	CHECK(check_for_temporal_macros(time_middle + 5, sizeof(time_middle) - 5));
	CHECK(check_for_temporal_macros(time_middle + 6, sizeof(time_middle) - 6));
	CHECK(check_for_temporal_macros(time_middle + 7, sizeof(time_middle) - 7));

	CHECK(check_for_temporal_macros(time_end + 0, sizeof(time_end) - 0));
	CHECK(check_for_temporal_macros(time_end + sizeof(time_end) - 9, 9));
	CHECK(!check_for_temporal_macros(time_end + sizeof(time_end) - 8, 8));

	CHECK(check_for_temporal_macros(date_start + 0, sizeof(date_start) - 0));
	CHECK(!check_for_temporal_macros(date_start + 1, sizeof(date_start) - 1));

	CHECK(check_for_temporal_macros(date_middle + 0, sizeof(date_middle) - 0));
	CHECK(check_for_temporal_macros(date_middle + 1, sizeof(date_middle) - 1));
	CHECK(check_for_temporal_macros(date_middle + 2, sizeof(date_middle) - 2));
	CHECK(check_for_temporal_macros(date_middle + 3, sizeof(date_middle) - 3));
	CHECK(check_for_temporal_macros(date_middle + 4, sizeof(date_middle) - 4));
	CHECK(check_for_temporal_macros(date_middle + 5, sizeof(date_middle) - 5));
	CHECK(check_for_temporal_macros(date_middle + 6, sizeof(date_middle) - 6));
	CHECK(check_for_temporal_macros(date_middle + 7, sizeof(date_middle) - 7));

	CHECK(check_for_temporal_macros(date_end + 0, sizeof(date_end) - 0));
	CHECK(check_for_temporal_macros(date_end + sizeof(date_end) - 9, 9));
	CHECK(!check_for_temporal_macros(date_end + sizeof(date_end) - 8, 8));

	CHECK(!check_for_temporal_macros(no_temporal + 0, sizeof(no_temporal) - 0));
	CHECK(!check_for_temporal_macros(no_temporal + 1, sizeof(no_temporal) - 1));
	CHECK(!check_for_temporal_macros(no_temporal + 2, sizeof(no_temporal) - 2));
	CHECK(!check_for_temporal_macros(no_temporal + 3, sizeof(no_temporal) - 3));
	CHECK(!check_for_temporal_macros(no_temporal + 4, sizeof(no_temporal) - 4));
	CHECK(!check_for_temporal_macros(no_temporal + 5, sizeof(no_temporal) - 5));
	CHECK(!check_for_temporal_macros(no_temporal + 6, sizeof(no_temporal) - 6));
	CHECK(!check_for_temporal_macros(no_temporal + 7, sizeof(no_temporal) - 7));
}

TEST_SUITE_END