From 511fdc42157c58f79b5ba732487a64bb0fb8fa18 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Tue, 23 Sep 2014 18:26:03 +0200 Subject: [PATCH] xbps_pkg_reverts: add unit tests to test this functionality. --- tests/xbps/libxbps/pkgdb/main.c | 31 +++++++++++++++++++++++ tests/xbps/libxbps/pkgdb/pkgdb-0.38.plist | 16 ++++++++++++ 2 files changed, 47 insertions(+) diff --git a/tests/xbps/libxbps/pkgdb/main.c b/tests/xbps/libxbps/pkgdb/main.c index e810523f..b87b8ca8 100644 --- a/tests/xbps/libxbps/pkgdb/main.c +++ b/tests/xbps/libxbps/pkgdb/main.c @@ -146,11 +146,42 @@ ATF_TC_BODY(pkgdb_get_pkg_revdeps_test, tc) ATF_REQUIRE_STREQ(xbps_string_cstring_nocopy(pstr), eout); } +ATF_TC(pkgdb_pkg_reverts_test); +ATF_TC_HEAD(pkgdb_pkg_reverts_test, tc) +{ + atf_tc_set_md_var(tc, "descr", "Test xbps_pkg_reverts()"); +} + +ATF_TC_BODY(pkgdb_pkg_reverts_test, tc) +{ + struct xbps_handle xh; + const char *tcsdir; + xbps_dictionary_t pkgd; + + /* get test source dir */ + tcsdir = atf_tc_get_config_var(tc, "srcdir"); + + memset(&xh, 0, sizeof(xh)); + strncpy(xh.rootdir, tcsdir, sizeof(xh.rootdir)); + strncpy(xh.metadir, tcsdir, sizeof(xh.metadir)); + xh.flags = XBPS_FLAG_DEBUG; + ATF_REQUIRE_EQ(xbps_init(&xh), 0); + + pkgd = xbps_pkgdb_get_pkg(&xh, "reverts"); + ATF_REQUIRE_EQ(xbps_object_type(pkgd), XBPS_TYPE_DICTIONARY); + + ATF_REQUIRE_EQ(xbps_pkg_reverts(pkgd, "reverts-0.2_1"), 0); + ATF_REQUIRE_EQ(xbps_pkg_reverts(pkgd, "reverts-0.3_1"), 1); + ATF_REQUIRE_EQ(xbps_pkg_reverts(pkgd, "reverts-0.4_1"), 1); + ATF_REQUIRE_EQ(xbps_pkg_reverts(pkgd, "reverts-0.5_1"), 0); +} + ATF_TP_ADD_TCS(tp) { ATF_TP_ADD_TC(tp, pkgdb_get_pkg_test); ATF_TP_ADD_TC(tp, pkgdb_get_virtualpkg_test); ATF_TP_ADD_TC(tp, pkgdb_get_pkg_revdeps_test); + ATF_TP_ADD_TC(tp, pkgdb_pkg_reverts_test); return atf_no_error(); } diff --git a/tests/xbps/libxbps/pkgdb/pkgdb-0.38.plist b/tests/xbps/libxbps/pkgdb/pkgdb-0.38.plist index b6bfa35b..7c4393ad 100644 --- a/tests/xbps/libxbps/pkgdb/pkgdb-0.38.plist +++ b/tests/xbps/libxbps/pkgdb/pkgdb-0.38.plist @@ -94,5 +94,21 @@ state installed + reverts + + automatic-install + + pkgver + reverts-0.2_1 + reverts + + 0.3_1 + 0.4_1 + + short_desc + two descriptionm + state + installed +