summaryrefslogtreecommitdiff
path: root/tests/libgit2/transport/register.c
blob: 4d3c09726da8c7908ca48d1f9bf11faa222070d5 (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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#include "clar_libgit2.h"
#include "git2/sys/remote.h"
#include "git2/sys/transport.h"

static const char *proxy_url = "https://proxy";
static git_transport _transport = GIT_TRANSPORT_INIT;

static int dummy_transport(git_transport **transport, git_remote *owner, void *param)
{
	*transport = &_transport;
	GIT_UNUSED(owner);
	GIT_UNUSED(param);
	return 0;
}

void test_transport_register__custom_transport(void)
{
	git_transport *transport;

	cl_git_pass(git_transport_register("something", dummy_transport, NULL));

	cl_git_pass(git_transport_new(&transport, NULL, "something://somepath"));

	cl_assert(transport == &_transport);

	cl_git_pass(git_transport_unregister("something"));
}

void test_transport_register__custom_transport_error_doubleregister(void)
{
	cl_git_pass(git_transport_register("something", dummy_transport, NULL));

	cl_git_fail_with(git_transport_register("something", dummy_transport, NULL), GIT_EEXISTS);

	cl_git_pass(git_transport_unregister("something"));
}

void test_transport_register__custom_transport_error_remove_non_existing(void)
{
	cl_git_fail_with(git_transport_unregister("something"), GIT_ENOTFOUND);
}

void test_transport_register__custom_transport_ssh(void)
{
	const char *urls[] = {
		"ssh://somehost:somepath",
		"ssh+git://somehost:somepath",
		"git+ssh://somehost:somepath",
		"git@somehost:somepath",
		"ssh://somehost:somepath%20with%20%spaces",
		"ssh://somehost:somepath with spaces"
	};
	git_transport *transport;
	unsigned i;

	for (i = 0; i < ARRAY_SIZE(urls); i++) {
#ifndef GIT_SSH
		cl_git_fail_with(git_transport_new(&transport, NULL, urls[i]), -1);
#else
		cl_git_pass(git_transport_new(&transport, NULL, urls[i]));
		transport->free(transport);
#endif
	}

	cl_git_pass(git_transport_register("ssh", dummy_transport, NULL));

	cl_git_pass(git_transport_new(&transport, NULL, "git@somehost:somepath"));

	cl_assert(transport == &_transport);

	cl_git_pass(git_transport_unregister("ssh"));

	for (i = 0; i < ARRAY_SIZE(urls); i++) {
#ifndef GIT_SSH
		cl_git_fail_with(git_transport_new(&transport, NULL, urls[i]), -1);
#else
		cl_git_pass(git_transport_new(&transport, NULL, urls[i]));
		transport->free(transport);
#endif
	}
}

static int custom_subtransport_stream__read(
		git_smart_subtransport_stream *stream,
		char *buffer,
		size_t buf_size,
		size_t *bytes_read)
{
	GIT_UNUSED(stream);
	GIT_UNUSED(buffer);
	GIT_UNUSED(buf_size);

	*bytes_read = 0;

	git_error_set_str(42, "unimplemented");
	return GIT_EUSER;
}

static int custom_subtransport_stream__write(
		git_smart_subtransport_stream *stream,
		const char *buffer,
		size_t len)
{
	GIT_UNUSED(stream);
	GIT_UNUSED(buffer);
	GIT_UNUSED(len);

	git_error_set_str(42, "unimplemented");
	return GIT_EUSER;
}

static void custom_subtransport_stream__free(
		git_smart_subtransport_stream *stream)
{
	git__free(stream);
}

struct custom_subtransport {
	git_smart_subtransport subtransport;
	git_transport *owner;
	int *called;
};

static int custom_subtransport__action(
		git_smart_subtransport_stream **out,
		git_smart_subtransport *transport,
		const char *url,
		git_smart_service_t action)
{
	struct custom_subtransport *t = (struct custom_subtransport *)transport;
	git_remote_connect_options opts = GIT_REMOTE_CONNECT_OPTIONS_INIT;
	int ret;

	GIT_UNUSED(url);
	GIT_UNUSED(action);

	ret = git_transport_remote_connect_options(&opts, t->owner);

	/* increase the counter once if this function was called at all and once more if the URL matches. */
	(*t->called)++;
	if (strcmp(proxy_url, opts.proxy_opts.url) == 0)
		(*t->called)++;

	git_remote_connect_options_dispose(&opts);

	*out = git__calloc(1, sizeof(git_smart_subtransport_stream));
	(*out)->subtransport = transport;
	(*out)->read = custom_subtransport_stream__read;
	(*out)->write = custom_subtransport_stream__write;
	(*out)->free = custom_subtransport_stream__free;

	return ret;
}

static int custom_subtransport__close(git_smart_subtransport *transport)
{
	GIT_UNUSED(transport);

	return 0;
}

static void custom_subtransport__free(git_smart_subtransport *transport)
{
	GIT_UNUSED(transport);

	git__free(transport);
}

static int custom_transport_callback(git_smart_subtransport **out, git_transport *owner, void *param)
{
	struct custom_subtransport *subtransport = git__calloc(1, sizeof(struct custom_subtransport));
	subtransport->called = (int *)param;
	subtransport->owner = owner;
	subtransport->subtransport.action = custom_subtransport__action;
	subtransport->subtransport.close = custom_subtransport__close;
	subtransport->subtransport.free = custom_subtransport__free;

	*out = &subtransport->subtransport;

	return 0;
}


static int custom_transport(git_transport **out, git_remote *owner, void *param)
{
	struct git_smart_subtransport_definition definition;
	definition.callback = custom_transport_callback;
	definition.rpc = false;
	definition.param = param;
	return git_transport_smart(out, owner, &definition);
}

void test_transport_register__custom_transport_callbacks(void)
{
	git_transport *transport;
	int called = 0;
	const char *url = "custom://somepath";
	git_remote_connect_options opts = GIT_REMOTE_CONNECT_OPTIONS_INIT;
	git_repository *repo;
	git_remote *remote;

	cl_git_pass(git_repository_init(&repo, "./transport", 0));
	cl_git_pass(git_remote_create(&remote, repo, "test",
		cl_fixture("testrepo.git")));

	cl_git_pass(git_transport_register("custom", custom_transport, &called));

	cl_git_pass(git_transport_new(&transport, remote, url));

	opts.follow_redirects = GIT_REMOTE_REDIRECT_NONE;
	opts.proxy_opts.url = proxy_url;

	/* This is expected to fail, since the subtransport_stream is not implemented */
	transport->connect(transport, url, GIT_SERVICE_UPLOADPACK_LS, &opts);
	/* the counter is increased twice if everything goes as planned */
	cl_assert_equal_i(2, called);
	cl_git_pass(transport->close(transport));
	transport->free(transport);

	cl_git_pass(git_transport_unregister("custom"));
	git_remote_free(remote);
	git_repository_free(repo);
	cl_fixture_cleanup("testrepo.git");
}