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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
#include <templates/gitlab/forks.h>
#include <templates/gitlab/issues.h>
#include <templates/gitlab/labels.h>
#include <templates/gitlab/merge_requests.h>
#include <templates/gitlab/milestones.h>
#include <templates/gitlab/pipelines.h>
#include <templates/gitlab/releases.h>
#include <templates/gitlab/repos.h>
#include <templates/gitlab/snippets.h>
#include <err.h>
#include <string.h>
#include <gcli/ctx.h>
#include <gcli/gitlab/api.h>
#include <gcli/port/util.h>
#include "gcli_tests.h"
static gcli_forge_type
get_gitlab_forge_type(struct gcli_ctx *ctx)
{
(void) ctx;
return GCLI_FORGE_GITLAB;
}
static struct gcli_ctx *
test_context(void)
{
struct gcli_ctx *ctx;
ATF_REQUIRE(gcli_init(&ctx, get_gitlab_forge_type, NULL, NULL) == NULL);
return ctx;
}
static FILE *
open_sample(char const *const name)
{
FILE *r;
char p[4096] = {0};
snprintf(p, sizeof p, "%s/samples/%s", TESTSRCDIR, name);
ATF_REQUIRE((r = fopen(p, "r")));
return r;
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_merge_request);
ATF_TC_BODY(gitlab_simple_merge_request, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_merge_request.json");
struct gcli_pull pull = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_mr(ctx, &stream, &pull) == 0);
ATF_CHECK_STREQ(pull.author, "herrhotzenplotz");
ATF_CHECK_STREQ(pull.state, "merged");
ATF_CHECK_STREQ(pull.title, "Fix test suite");
ATF_CHECK_STREQ(pull.body, "This finally fixes the broken test suite");
ATF_CHECK_EQ(pull.created_at, 1693525070);
ATF_CHECK(pull.commits_link == NULL);
ATF_CHECK_STREQ(pull.head_label, "fix-test-suite");
ATF_CHECK_STREQ(pull.base_label, "trunk");
ATF_CHECK_STREQ(pull.head_sha, "3eab596a6806434e4a34bb19de12307ab1217af3");
ATF_CHECK(pull.milestone == NULL);
ATF_CHECK(pull.id == 246912053);
ATF_CHECK(pull.number == 216);
ATF_CHECK(pull.comments == 0); // not supported
ATF_CHECK(pull.additions == 0); // not supported
ATF_CHECK(pull.deletions == 0); // not supported
ATF_CHECK(pull.commits == 0); // not supported
ATF_CHECK(pull.changed_files == 0); // not supported
ATF_CHECK(pull.head_pipeline_id == 989409992);
ATF_CHECK(pull.labels_size == 0);
ATF_CHECK(pull.labels == NULL);
ATF_CHECK(pull.merged == false);
ATF_CHECK(pull.mergeable == true);
ATF_CHECK(pull.draft == false);
json_close(&stream);
gcli_pull_free(&pull);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_issue);
ATF_TC_BODY(gitlab_simple_issue, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_issue.json");
struct gcli_issue issue = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_issue(ctx, &stream, &issue) == 0);
ATF_CHECK(issue.number == 193);
ATF_CHECK_STREQ(issue.title, "Make notifications API use a list struct containing both the ptr and size");
ATF_CHECK_EQ(issue.created_at, 1691952185);
ATF_CHECK_STREQ(issue.author, "herrhotzenplotz");
ATF_CHECK_STREQ(issue.state, "closed");
ATF_CHECK(issue.comments == 2);
ATF_CHECK(issue.locked == false);
ATF_CHECK_STREQ(issue.body, "That would make some of the code much cleaner");
ATF_CHECK(issue.labels_size == 1);
ATF_CHECK_STREQ(issue.labels[0], "good-first-issue");
ATF_CHECK(issue.assignees == NULL);
ATF_CHECK(issue.assignees_size == 0);
ATF_CHECK(issue.is_pr == 0);
ATF_CHECK(issue.milestone == NULL);
json_close(&stream);
gcli_issue_free(&issue);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_label);
ATF_TC_BODY(gitlab_simple_label, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_label.json");
struct gcli_label label = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_label(ctx, &stream, &label) == 0);
ATF_CHECK(label.id == 24376073);
ATF_CHECK_STREQ(label.name, "bug");
ATF_CHECK_STREQ(label.description, "Something isn't working as expected");
ATF_CHECK(label.colour == 0xD73A4A00);
json_close(&stream);
gcli_free_label(&label);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_release);
ATF_TC_BODY(gitlab_simple_release, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_release.json");
struct gcli_release release = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_release(ctx, &stream, &release) == 0);
/* NOTE(Nico): this silly hack is needed as the fixup is only
* applied internally when you fetch the release list using the
* public library API. */
gitlab_fixup_release_assets(ctx, &release);
/* NOTE(Nico): on gitlab this is the tag name */
ATF_CHECK_STREQ(release.id, "1.2.0");
ATF_CHECK(release.assets_size == 4);
{
ATF_CHECK_STREQ(release.assets[0].name, "gcli-1.2.0.zip");
ATF_CHECK_STREQ(release.assets[0].url,
"https://gitlab.com/herrhotzenplotz/gcli/-/archive/1.2.0/gcli-1.2.0.zip");
}
{
ATF_CHECK_STREQ(release.assets[1].name, "gcli-1.2.0.tar.gz");
ATF_CHECK_STREQ(release.assets[1].url,
"https://gitlab.com/herrhotzenplotz/gcli/-/archive/1.2.0/gcli-1.2.0.tar.gz");
}
{
ATF_CHECK_STREQ(release.assets[2].name, "gcli-1.2.0.tar.bz2");
ATF_CHECK_STREQ(release.assets[2].url,
"https://gitlab.com/herrhotzenplotz/gcli/-/archive/1.2.0/gcli-1.2.0.tar.bz2");
}
{
ATF_CHECK_STREQ(release.assets[3].name, "gcli-1.2.0.tar");
ATF_CHECK_STREQ(release.assets[3].url,
"https://gitlab.com/herrhotzenplotz/gcli/-/archive/1.2.0/gcli-1.2.0.tar");
}
ATF_CHECK_STREQ(release.name, "1.2.0");
ATF_CHECK_STREQ(release.body, "# Version 1.2.0\n\nThis is version 1.2.0 of gcli.\n\n## Notes\n\nPlease test and report bugs.\n\nYou can download autotoolized tarballs at: https://herrhotzenplotz.de/gcli/releases/gcli-1.2.0/\n\n## Bug Fixes\n\n- Fix compile error when providing --with-libcurl without any arguments\n- Fix memory leaks in string processing functions\n- Fix missing nul termination in read-file function\n- Fix segmentation fault when clearing the milestone of a PR on Gitea\n- Fix missing documentation for milestone action in issues and pulls\n- Set the 'merged' flag properly when showing Gitlab merge requests\n\n## New features\n\n- Add a config subcommand for managing ssh keys (see gcli-config(1))\n- Show number of comments/notes in list of issues and PRs\n- Add support for milestone management in pull requests\n");
ATF_CHECK_STREQ(release.author, "herrhotzenplotz");
ATF_CHECK_EQ(release.date, 1691740566);
ATF_CHECK(release.upload_url == NULL);
ATF_CHECK(release.draft == false);
ATF_CHECK(release.prerelease == false);
json_close(&stream);
gcli_release_free(&release);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_fork);
ATF_TC_BODY(gitlab_simple_fork, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_fork.json");
struct gcli_fork fork = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_fork(ctx, &stream, &fork) == 0);
ATF_CHECK_STREQ(fork.full_name, "gjnoonan/gcli");
ATF_CHECK_STREQ(fork.owner, "gjnoonan");
ATF_CHECK_EQ(fork.date, 1664718860);
ATF_CHECK(fork.forks == 0);
json_close(&stream);
gcli_fork_free(&fork);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_milestone);
ATF_TC_BODY(gitlab_simple_milestone, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_milestone.json");
struct gcli_milestone milestone = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_milestone(ctx, &stream, &milestone) == 0);
ATF_CHECK(milestone.id == 2975318);
ATF_CHECK_STREQ(milestone.title, "Version 2");
ATF_CHECK_STREQ(milestone.state, "active");
ATF_CHECK_STREQ(milestone.description,
"Things that need to be done for version 2");
ATF_CHECK_EQ(milestone.created_at, 1675624100);
ATF_CHECK_EQ(milestone.due_date, 0);
ATF_CHECK_EQ(milestone.updated_at, 1675624100);
ATF_CHECK(milestone.expired == false);
json_close(&stream);
gcli_free_milestone(&milestone);
gcli_destroy(&ctx);
/* Ignore open issues and closed issues as they are
* github/gitea-specific */
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_pipeline);
ATF_TC_BODY(gitlab_simple_pipeline, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_pipeline.json");
struct gitlab_pipeline pipeline = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_pipeline(ctx, &stream, &pipeline) == 0);
ATF_CHECK(pipeline.id == 989897020);
ATF_CHECK_STREQ(pipeline.status, "failed");
ATF_CHECK_EQ(pipeline.created_at, 1693665020);
ATF_CHECK_EQ(pipeline.updated_at, 1693665100);
ATF_CHECK_STREQ(pipeline.ref, "refs/merge-requests/219/head");
ATF_CHECK_STREQ(pipeline.sha, "742affb88a297a6b34201ad61c8b5b72ec6eb679");
ATF_CHECK_STREQ(pipeline.source, "merge_request_event");
json_close(&stream);
gitlab_pipeline_free(&pipeline);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_repo);
ATF_TC_BODY(gitlab_simple_repo, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_repo.json");
struct gcli_repo repo = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_repo(ctx, &stream, &repo) == 0);
ATF_CHECK(repo.id == 34707535);
ATF_CHECK_STREQ(repo.full_name, "herrhotzenplotz/gcli");
ATF_CHECK_STREQ(repo.name, "gcli");
ATF_CHECK_STREQ(repo.owner, "herrhotzenplotz");
ATF_CHECK_EQ(repo.date, 1647968279);
ATF_CHECK_STREQ(repo.visibility, "public");
ATF_CHECK(repo.is_fork == false);
json_close(&stream);
gcli_repo_free(&repo);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_simple_snippet);
ATF_TC_BODY(gitlab_simple_snippet, tc)
{
struct json_stream stream = {0};
struct gcli_ctx *ctx = test_context();
FILE *f = open_sample("gitlab_simple_snippet.json");
struct gcli_gitlab_snippet snippet = {0};
json_open_stream(&stream, f);
ATF_REQUIRE(parse_gitlab_snippet(ctx, &stream, &snippet) == 0);
ATF_CHECK(snippet.id == 2141655);
ATF_CHECK_STREQ(snippet.title, "darcy-weisbach SPARC64");
ATF_CHECK_STREQ(snippet.filename, "darcy-weisbach SPARC64");
ATF_CHECK_STREQ(snippet.date, "2021-06-28T15:47:36.214Z");
ATF_CHECK_STREQ(snippet.author, "herrhotzenplotz");
ATF_CHECK_STREQ(snippet.visibility, "public");
ATF_CHECK_STREQ(snippet.raw_url, "https://gitlab.com/-/snippets/2141655/raw");
json_close(&stream);
gcli_gitlab_snippet_free(&snippet);
gcli_destroy(&ctx);
}
ATF_TC_WITHOUT_HEAD(gitlab_error_token_expired);
ATF_TC_BODY(gitlab_error_token_expired, tc)
{
struct gcli_ctx *ctx = test_context();
struct gcli_fetch_buffer buffer = {0};
char const *errmsg = NULL;
buffer.length = gcli_read_file(TESTSRCDIR"/samples/gitlab_token_expired.json",
&buffer.data);
ATF_REQUIRE(buffer.length);
errmsg = gitlab_api_error_string(ctx, &buffer);
ATF_CHECK_STREQ(errmsg, "Token has expired.");
}
ATF_TC_WITHOUT_HEAD(gitlab_error_unauthorised);
ATF_TC_BODY(gitlab_error_unauthorised, tc)
{
struct gcli_ctx *ctx = test_context();
struct gcli_fetch_buffer buffer = {0};
char const *errmsg = NULL;
buffer.length = gcli_read_file(TESTSRCDIR"/samples/gitlab_error_unauthorised.json",
&buffer.data);
ATF_REQUIRE(buffer.length);
errmsg = gitlab_api_error_string(ctx, &buffer);
ATF_CHECK_STREQ(errmsg, "401 Unauthorized");
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, gitlab_simple_fork);
ATF_TP_ADD_TC(tp, gitlab_simple_issue);
ATF_TP_ADD_TC(tp, gitlab_simple_label);
ATF_TP_ADD_TC(tp, gitlab_simple_merge_request);
ATF_TP_ADD_TC(tp, gitlab_simple_milestone);
ATF_TP_ADD_TC(tp, gitlab_simple_pipeline);
ATF_TP_ADD_TC(tp, gitlab_simple_release);
ATF_TP_ADD_TC(tp, gitlab_simple_repo);
ATF_TP_ADD_TC(tp, gitlab_simple_snippet);
ATF_TP_ADD_TC(tp, gitlab_error_token_expired);
ATF_TP_ADD_TC(tp, gitlab_error_unauthorised);
return atf_no_error();
}
|