aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/tests/git.cc
blob: 5b5715fc26bbf9e8ba604655434eaeb0616ad78c (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
#include "git.hh"
#include <gtest/gtest.h>

namespace nix {

    TEST(GitLsRemote, parseSymrefLineWithReference) {
        auto line = "ref: refs/head/main	HEAD";
        auto res = git::parseLsRemoteLine(line);
        ASSERT_TRUE(res.has_value());
        ASSERT_EQ(res->kind, git::LsRemoteRefLine::Kind::Symbolic);
        ASSERT_EQ(res->target, "refs/head/main");
        ASSERT_EQ(res->reference, "HEAD");
    }

    TEST(GitLsRemote, parseSymrefLineWithNoReference) {
        auto line = "ref: refs/head/main";
        auto res = git::parseLsRemoteLine(line);
        ASSERT_TRUE(res.has_value());
        ASSERT_EQ(res->kind, git::LsRemoteRefLine::Kind::Symbolic);
        ASSERT_EQ(res->target, "refs/head/main");
        ASSERT_EQ(res->reference, std::nullopt);
    }

    TEST(GitLsRemote, parseObjectRefLine) {
        auto line = "abc123	refs/head/main";
        auto res = git::parseLsRemoteLine(line);
        ASSERT_TRUE(res.has_value());
        ASSERT_EQ(res->kind, git::LsRemoteRefLine::Kind::Object);
        ASSERT_EQ(res->target, "abc123");
        ASSERT_EQ(res->reference, "refs/head/main");
    }
}