t15-config.c 5.54 KB
Newer Older
Carlos Martín Nieto committed
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
/*
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2,
 * as published by the Free Software Foundation.
 *
 * In addition to the permissions in the GNU General Public License,
 * the authors give you unlimited permission to link the compiled
 * version of this file into combinations with other programs,
 * and to distribute those combinations without any restriction
 * coming from the use of this file.  (The General Public License
 * restrictions do apply in other respects; for example, they cover
 * modification of the file, and distribution when not linked into
 * a combined executable.)
 *
 * This file 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; see the file COPYING.  If not, write to
 * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */
#include "test_lib.h"
#include "test_helpers.h"

#include <git2.h>

#define CONFIG_BASE TEST_RESOURCES "/config"

/*
 * This one is so we know the code isn't completely broken
 */
BEGIN_TEST(config0, "read a simple configuration")
	git_config *cfg;
	int i;

39
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config0"));
Carlos Martín Nieto committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	must_pass(git_config_get_int(cfg, "core.repositoryformatversion", &i));
	must_be_true(i == 0);
	must_pass(git_config_get_bool(cfg, "core.filemode", &i));
	must_be_true(i == 1);
	must_pass(git_config_get_bool(cfg, "core.bare", &i));
	must_be_true(i == 0);
	must_pass(git_config_get_bool(cfg, "core.logallrefupdates", &i));
	must_be_true(i == 1);

	git_config_free(cfg);
END_TEST

/*
 * [this "that"] and [this "That] are different namespaces. Make sure
 * each returns the correct one.
 */
BEGIN_TEST(config1, "case sensitivity")
	git_config *cfg;
	int i;
	const char *str;

61
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config1"));
Carlos Martín Nieto committed
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

	must_pass(git_config_get_string(cfg, "this.that.other", &str));
	must_be_true(!strcmp(str, "true"));
	must_pass(git_config_get_string(cfg, "this.That.other", &str));
	must_be_true(!strcmp(str, "yes"));

	must_pass(git_config_get_bool(cfg, "this.that.other", &i));
	must_be_true(i == 1);
	must_pass(git_config_get_bool(cfg, "this.That.other", &i));
	must_be_true(i == 1);

	/* This one doesn't exist */
	must_fail(git_config_get_bool(cfg, "this.thaT.other", &i));

	git_config_free(cfg);
END_TEST

/*
 * If \ is the last non-space character on the line, we read the next
 * one, separating each line with SP.
 */
BEGIN_TEST(config2, "parse a multiline value")
	git_config *cfg;
	const char *str;

87
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config2"));
Carlos Martín Nieto committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101

	must_pass(git_config_get_string(cfg, "this.That.and", &str));
	must_be_true(!strcmp(str, "one one one two two three three"));

	git_config_free(cfg);
END_TEST

/*
 * This kind of subsection declaration is case-insensitive
 */
BEGIN_TEST(config3, "parse a [section.subsection] header")
	git_config *cfg;
	const char *str;

102
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config3"));
Carlos Martín Nieto committed
103 104 105 106 107 108 109 110 111 112 113 114

	must_pass(git_config_get_string(cfg, "section.subsection.var", &str));
	must_be_true(!strcmp(str, "hello"));

	/* Avoid a false positive */
	str = "nohello";
	must_pass(git_config_get_string(cfg, "section.subSectIon.var", &str));
	must_be_true(!strcmp(str, "hello"));

	git_config_free(cfg);
END_TEST

115 116 117 118 119
BEGIN_TEST(config4, "a variable name on its own is valid")
	git_config *cfg;
const char *str;
int i;

120
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config4"));
121 122 123 124 125 126 127 128 129 130

	must_pass(git_config_get_string(cfg, "some.section.variable", &str));
	must_be_true(str == NULL);

	must_pass(git_config_get_bool(cfg, "some.section.variable", &i));
	must_be_true(i == 1);


	git_config_free(cfg);
END_TEST
Carlos Martín Nieto committed
131

132 133 134 135
BEGIN_TEST(config5, "test number suffixes")
	git_config *cfg;
	long int i;

136
	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config5"));
137 138 139 140 141 142 143

	must_pass(git_config_get_long(cfg, "number.simple", &i));
	must_be_true(i == 1);

	must_pass(git_config_get_long(cfg, "number.k", &i));
	must_be_true(i == 1 * 1024);

144 145 146
	must_pass(git_config_get_long(cfg, "number.kk", &i));
	must_be_true(i == 1 * 1024);

147 148 149
	must_pass(git_config_get_long(cfg, "number.m", &i));
	must_be_true(i == 1 * 1024 * 1024);

150 151 152
	must_pass(git_config_get_long(cfg, "number.mm", &i));
	must_be_true(i == 1 * 1024 * 1024);

153 154 155
	must_pass(git_config_get_long(cfg, "number.g", &i));
	must_be_true(i == 1 * 1024 * 1024 * 1024);

156 157 158
	must_pass(git_config_get_long(cfg, "number.gg", &i));
	must_be_true(i == 1 * 1024 * 1024 * 1024);

159 160 161
	git_config_free(cfg);
END_TEST

162 163 164 165 166 167 168 169 170 171 172 173 174 175
BEGIN_TEST(config6, "test blank lines")
	git_config *cfg;
	int i;

	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config6"));

	must_pass(git_config_get_bool(cfg, "valid.subsection.something", &i));
	must_be_true(i == 1);

	must_pass(git_config_get_bool(cfg, "something.else.something", &i));
	must_be_true(i == 0);

	git_config_free(cfg);
END_TEST
176

177 178 179 180 181 182 183
BEGIN_TEST(config7, "test for invalid ext headers")
	git_config *cfg;

	must_fail(git_config_open_file(&cfg, CONFIG_BASE "/config7"));

END_TEST

184 185 186 187 188 189 190 191
BEGIN_TEST(config8, "don't fail on empty files")
	git_config *cfg;

	must_pass(git_config_open_file(&cfg, CONFIG_BASE "/config8"));

	git_config_free(cfg);
END_TEST

Carlos Martín Nieto committed
192 193 194 195 196
BEGIN_SUITE(config)
	 ADD_TEST(config0);
	 ADD_TEST(config1);
	 ADD_TEST(config2);
	 ADD_TEST(config3);
197
	 ADD_TEST(config4);
198
	 ADD_TEST(config5);
199
	 ADD_TEST(config6);
200
	 ADD_TEST(config7);
201
	 ADD_TEST(config8);
Carlos Martín Nieto committed
202
END_SUITE