Hash :
163db8f2
Author :
Date :
2020-02-28T18:53:22
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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
#ifndef _WIN32
# include <arpa/inet.h>
# include <sys/socket.h>
# include <netinet/in.h>
#else
# include <ws2tcpip.h>
# ifdef _MSC_VER
# pragma comment(lib, "ws2_32")
# endif
#endif
#include "clar_libgit2.h"
#include "futils.h"
#include "posix.h"
void test_core_posix__initialize(void)
{
#ifdef GIT_WIN32
/* on win32, the WSA context needs to be initialized
* before any socket calls can be performed */
WSADATA wsd;
cl_git_pass(WSAStartup(MAKEWORD(2,2), &wsd));
cl_assert(LOBYTE(wsd.wVersion) == 2 && HIBYTE(wsd.wVersion) == 2);
#endif
}
static bool supports_ipv6(void)
{
#ifdef GIT_WIN32
/* IPv6 is supported on Vista and newer */
return git_has_win32_version(6, 0, 0);
#else
return 1;
#endif
}
void test_core_posix__inet_pton(void)
{
struct in_addr addr;
struct in6_addr addr6;
size_t i;
struct in_addr_data {
const char *p;
const uint8_t n[4];
};
struct in6_addr_data {
const char *p;
const uint8_t n[16];
};
static struct in_addr_data in_addr_data[] = {
{ "0.0.0.0", { 0, 0, 0, 0 } },
{ "10.42.101.8", { 10, 42, 101, 8 } },
{ "127.0.0.1", { 127, 0, 0, 1 } },
{ "140.177.10.12", { 140, 177, 10, 12 } },
{ "204.232.175.90", { 204, 232, 175, 90 } },
{ "255.255.255.255", { 255, 255, 255, 255 } },
};
static struct in6_addr_data in6_addr_data[] = {
{ "::", { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } },
{ "::1", { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 } },
{ "0:0:0:0:0:0:0:1", { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 } },
{ "2001:db8:8714:3a90::12", { 0x20, 0x01, 0x0d, 0xb8, 0x87, 0x14, 0x3a, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12 } },
{ "fe80::f8ba:c2d6:86be:3645", { 0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xba, 0xc2, 0xd6, 0x86, 0xbe, 0x36, 0x45 } },
{ "::ffff:204.152.189.116", { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x98, 0xbd, 0x74 } },
};
/* Test some ipv4 addresses */
for (i = 0; i < 6; i++) {
cl_assert(p_inet_pton(AF_INET, in_addr_data[i].p, &addr) == 1);
cl_assert(memcmp(&addr, in_addr_data[i].n, sizeof(struct in_addr)) == 0);
}
/* Test some ipv6 addresses */
if (supports_ipv6())
{
for (i = 0; i < 6; i++) {
cl_assert(p_inet_pton(AF_INET6, in6_addr_data[i].p, &addr6) == 1);
cl_assert(memcmp(&addr6, in6_addr_data[i].n, sizeof(struct in6_addr)) == 0);
}
}
/* Test some invalid strings */
cl_assert(p_inet_pton(AF_INET, "", &addr) == 0);
cl_assert(p_inet_pton(AF_INET, "foo", &addr) == 0);
cl_assert(p_inet_pton(AF_INET, " 127.0.0.1", &addr) == 0);
cl_assert(p_inet_pton(AF_INET, "bar", &addr) == 0);
cl_assert(p_inet_pton(AF_INET, "10.foo.bar.1", &addr) == 0);
/* Test unsupported address families */
cl_git_fail(p_inet_pton(INT_MAX-1, "52.472", &addr));
cl_assert_equal_i(EAFNOSUPPORT, errno);
}
void test_core_posix__utimes(void)
{
struct p_timeval times[2];
struct stat st;
time_t curtime;
int fd;
/* test p_utimes */
times[0].tv_sec = 1234567890;
times[0].tv_usec = 0;
times[1].tv_sec = 1234567890;
times[1].tv_usec = 0;
cl_git_mkfile("foo", "Dummy file.");
cl_must_pass(p_utimes("foo", times));
cl_must_pass(p_stat("foo", &st));
cl_assert_equal_i(1234567890, st.st_atime);
cl_assert_equal_i(1234567890, st.st_mtime);
/* test p_futimes */
times[0].tv_sec = 1414141414;
times[0].tv_usec = 0;
times[1].tv_sec = 1414141414;
times[1].tv_usec = 0;
cl_must_pass(fd = p_open("foo", O_RDWR));
cl_must_pass(p_futimes(fd, times));
cl_must_pass(p_close(fd));
cl_must_pass(p_stat("foo", &st));
cl_assert_equal_i(1414141414, st.st_atime);
cl_assert_equal_i(1414141414, st.st_mtime);
/* test p_utimes with current time, assume that
* it takes < 5 seconds to get the time...!
*/
cl_must_pass(p_utimes("foo", NULL));
curtime = time(NULL);
cl_must_pass(p_stat("foo", &st));
cl_assert((st.st_atime - curtime) < 5);
cl_assert((st.st_mtime - curtime) < 5);
cl_must_pass(p_unlink("foo"));
}
void test_core_posix__unlink_removes_symlink(void)
{
if (!git_path_supports_symlinks(clar_sandbox_path()))
clar__skip();
cl_git_mkfile("file", "Dummy file.");
cl_git_pass(git_futils_mkdir("dir", 0777, 0));
cl_must_pass(p_symlink("file", "file-symlink"));
cl_must_pass(p_symlink("dir", "dir-symlink"));
cl_must_pass(p_unlink("file-symlink"));
cl_must_pass(p_unlink("dir-symlink"));
cl_assert(git_path_exists("file"));
cl_assert(git_path_exists("dir"));
cl_must_pass(p_unlink("file"));
cl_must_pass(p_rmdir("dir"));
}
void test_core_posix__symlink_resolves_to_correct_type(void)
{
git_buf contents = GIT_BUF_INIT;
if (!git_path_supports_symlinks(clar_sandbox_path()))
clar__skip();
cl_must_pass(git_futils_mkdir("dir", 0777, 0));
cl_must_pass(git_futils_mkdir("file", 0777, 0));
cl_git_mkfile("dir/file", "symlink target");
cl_git_pass(p_symlink("file", "dir/link"));
cl_git_pass(git_futils_readbuffer(&contents, "dir/file"));
cl_assert_equal_s(contents.ptr, "symlink target");
cl_must_pass(p_unlink("dir/link"));
cl_must_pass(p_unlink("dir/file"));
cl_must_pass(p_rmdir("dir"));
cl_must_pass(p_rmdir("file"));
git_buf_dispose(&contents);
}
void test_core_posix__relative_symlink(void)
{
git_buf contents = GIT_BUF_INIT;
if (!git_path_supports_symlinks(clar_sandbox_path()))
clar__skip();
cl_must_pass(git_futils_mkdir("dir", 0777, 0));
cl_git_mkfile("file", "contents");
cl_git_pass(p_symlink("../file", "dir/link"));
cl_git_pass(git_futils_readbuffer(&contents, "dir/link"));
cl_assert_equal_s(contents.ptr, "contents");
cl_must_pass(p_unlink("file"));
cl_must_pass(p_unlink("dir/link"));
cl_must_pass(p_rmdir("dir"));
git_buf_dispose(&contents);
}
void test_core_posix__symlink_to_file_across_dirs(void)
{
git_buf contents = GIT_BUF_INIT;
if (!git_path_supports_symlinks(clar_sandbox_path()))
clar__skip();
/*
* Create a relative symlink that points into another
* directory. This used to not work on Win32, where we
* forgot to convert directory separators to
* Windows-style ones.
*/
cl_must_pass(git_futils_mkdir("dir", 0777, 0));
cl_git_mkfile("dir/target", "symlink target");
cl_git_pass(p_symlink("dir/target", "link"));
cl_git_pass(git_futils_readbuffer(&contents, "dir/target"));
cl_assert_equal_s(contents.ptr, "symlink target");
cl_must_pass(p_unlink("dir/target"));
cl_must_pass(p_unlink("link"));
cl_must_pass(p_rmdir("dir"));
git_buf_dispose(&contents);
}