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
|
/*
* Copyright (C) 2014 Red Hat, Inc.
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libdnf/dnf-advisory.h"
#include "libdnf/dnf-advisoryref.h"
#include "libdnf/hy-package.h"
#include "fixtures.h"
#include "test_suites.h"
#include "testsys.h"
static DnfAdvisoryRef *reference;
static void
advisoryref_fixture(void)
{
fixture_yum();
DnfPackage *pkg;
GPtrArray *advisories;
GPtrArray *reflist;
pkg = by_name(test_globals.sack, "tour");
advisories = dnf_package_get_advisories(pkg, HY_GT);
auto advisory = static_cast<DnfAdvisory *>(g_ptr_array_index(advisories, 0));
reflist = dnf_advisory_get_references(advisory);
reference = static_cast<DnfAdvisoryRef *>(g_steal_pointer(&g_ptr_array_index(reflist, 0)));
g_ptr_array_unref(reflist);
g_ptr_array_unref(advisories);
g_object_unref(pkg);
}
static void
advisoryref_teardown(void)
{
dnf_advisoryref_free(reference);
teardown();
}
START_TEST(test_type)
{
ck_assert_int_eq(dnf_advisoryref_get_kind(reference), DNF_REFERENCE_KIND_BUGZILLA);
}
END_TEST
START_TEST(test_id)
{
ck_assert_str_eq(dnf_advisoryref_get_id(reference), "472090");
}
END_TEST
START_TEST(test_title)
{
ck_assert_str_eq(dnf_advisoryref_get_title(reference), "/etc/init.d/clvmd points to /usr/sbin for LVM tools");
}
END_TEST
START_TEST(test_url)
{
ck_assert_str_eq(dnf_advisoryref_get_url(reference), "https://bugzilla.redhat.com/show_bug.cgi?id=472090");
}
END_TEST
Suite *
advisoryref_suite(void)
{
Suite *s = suite_create("AdvisoryRef");
TCase *tc;
tc = tcase_create("WithRealRepo");
tcase_add_unchecked_fixture(tc, advisoryref_fixture, advisoryref_teardown);
tcase_add_test(tc, test_type);
tcase_add_test(tc, test_id);
tcase_add_test(tc, test_title);
tcase_add_test(tc, test_url);
suite_add_tcase(s, tc);
return s;
}
|