tests: remove obsolete tests for 0.19 API.
This commit is contained in:
parent
8345070884
commit
15b148fb51
@ -4,13 +4,8 @@ SUBDIRS = common
|
|||||||
|
|
||||||
SUBDIRS += cmpver
|
SUBDIRS += cmpver
|
||||||
SUBDIRS += pkgpattern_match
|
SUBDIRS += pkgpattern_match
|
||||||
SUBDIRS += plist_array_replace
|
|
||||||
SUBDIRS += plist_find_array
|
|
||||||
SUBDIRS += plist_find_dictionary
|
|
||||||
SUBDIRS += plist_match
|
SUBDIRS += plist_match
|
||||||
SUBDIRS += plist_match_virtual
|
SUBDIRS += plist_match_virtual
|
||||||
SUBDIRS += plist_remove
|
|
||||||
SUBDIRS += util
|
SUBDIRS += util
|
||||||
SUBDIRS += find_pkg
|
|
||||||
|
|
||||||
include ../../mk/subdir.mk
|
include ../../mk/subdir.mk
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
syntax("kyuafile", 1)
|
|
||||||
|
|
||||||
test_suite("libxbps")
|
|
||||||
|
|
||||||
atf_test_program{name="pkg_installed_in_pkgdb_test"}
|
|
@ -1,8 +0,0 @@
|
|||||||
TOPDIR = ../../..
|
|
||||||
-include $(TOPDIR)/config.mk
|
|
||||||
|
|
||||||
TESTSSUBDIR = libxbps/find_pkg
|
|
||||||
TEST = pkg_installed_in_pkgdb_test
|
|
||||||
EXTRA_FILES = Kyuafile xbps.conf pkgdb.plist
|
|
||||||
|
|
||||||
include $(TOPDIR)/mk/test.mk
|
|
@ -1,95 +0,0 @@
|
|||||||
/*-
|
|
||||||
* Copyright (c) 2012 Juan Romero Pardines.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
||||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
||||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
||||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*-
|
|
||||||
*/
|
|
||||||
#include <string.h>
|
|
||||||
#include <atf-c.h>
|
|
||||||
#include <xbps_api.h>
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_dict_installed_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_dict_installed_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_dict_installed");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_dict_installed_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
const char *pkgver, *tcsdir;
|
|
||||||
|
|
||||||
/* get test source dir */
|
|
||||||
tcsdir = atf_tc_get_config_var(tc, "srcdir");
|
|
||||||
|
|
||||||
/* initialize xbps */
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xh.rootdir = "/tmp";
|
|
||||||
xh.metadir = tcsdir;
|
|
||||||
ATF_REQUIRE_EQ(xbps_init(&xh), 0);
|
|
||||||
|
|
||||||
dr = xbps_find_pkg_dict_installed(&xh, "xbps", false);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgver", &pkgver);
|
|
||||||
ATF_REQUIRE_STREQ(pkgver, "xbps-0.14");
|
|
||||||
|
|
||||||
xbps_end(&xh);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_virtualpkg_dict_installed_test);
|
|
||||||
ATF_TC_HEAD(find_virtualpkg_dict_installed_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_virtualpkg_dict_installed");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_virtualpkg_dict_installed_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
const char *pkgver, *tcsdir;
|
|
||||||
char *cffile;
|
|
||||||
|
|
||||||
/* get test source dir */
|
|
||||||
tcsdir = atf_tc_get_config_var(tc, "srcdir");
|
|
||||||
cffile = xbps_xasprintf("%s/xbps.conf", tcsdir);
|
|
||||||
|
|
||||||
/* initialize xbps */
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xh.rootdir = "/tmp";
|
|
||||||
xh.conffile = cffile;
|
|
||||||
xh.metadir = tcsdir;
|
|
||||||
ATF_REQUIRE_EQ(xbps_init(&xh), 0);
|
|
||||||
|
|
||||||
dr = xbps_find_virtualpkg_dict_installed(&xh, "xbps-src>=24", true);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgver", &pkgver);
|
|
||||||
ATF_REQUIRE_STREQ(pkgver, "xbps-src-git-20120312");
|
|
||||||
|
|
||||||
xbps_end(&xh);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TP_ADD_TCS(tp)
|
|
||||||
{
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_dict_installed_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_virtualpkg_dict_installed_test);
|
|
||||||
|
|
||||||
return atf_no_error();
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<array>
|
|
||||||
<dict>
|
|
||||||
<key>automatic-install</key>
|
|
||||||
<true/>
|
|
||||||
<key>pkgname</key>
|
|
||||||
<string>xbps</string>
|
|
||||||
<key>pkgver</key>
|
|
||||||
<string>xbps-0.14</string>
|
|
||||||
<key>short_desc</key>
|
|
||||||
<string>The XBPS package system</string>
|
|
||||||
<key>state</key>
|
|
||||||
<string>installed</string>
|
|
||||||
<key>version</key>
|
|
||||||
<string>0.14</string>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>automatic-install</key>
|
|
||||||
<false/>
|
|
||||||
<key>pkgname</key>
|
|
||||||
<string>xbps-src-git</string>
|
|
||||||
<key>pkgver</key>
|
|
||||||
<string>xbps-src-git-20120312</string>
|
|
||||||
<key>provides</key>
|
|
||||||
<array>
|
|
||||||
<string>xbps-src-9999</string>
|
|
||||||
</array>
|
|
||||||
<key>short_desc</key>
|
|
||||||
<string>The XBPS package system - binary package builder (git snaphost)</string>
|
|
||||||
<key>state</key>
|
|
||||||
<string>installed</string>
|
|
||||||
<key>version</key>
|
|
||||||
<string>20120312</string>
|
|
||||||
</dict>
|
|
||||||
</array>
|
|
||||||
</plist>
|
|
@ -1 +0,0 @@
|
|||||||
virtual-package xbps-src-git { targets = "xbps-src-9999" }
|
|
@ -1,7 +0,0 @@
|
|||||||
TOPDIR = ../../..
|
|
||||||
-include $(TOPDIR)/config.mk
|
|
||||||
|
|
||||||
TEST = plist_array_replace_test
|
|
||||||
|
|
||||||
include ../Makefile.inc
|
|
||||||
include $(TOPDIR)/mk/test.mk
|
|
@ -1,139 +0,0 @@
|
|||||||
/*-
|
|
||||||
* Copyright (c) 2012 Juan Romero Pardines.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
||||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
||||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
||||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*-
|
|
||||||
*/
|
|
||||||
#include <atf-c.h>
|
|
||||||
#include <xbps_api.h>
|
|
||||||
|
|
||||||
static const char axml[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>afoo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>1.1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>afoo-1.1</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
"</array>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
static const char axml2[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>bfoo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>1.2</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>bfoo-1.2</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
"</array>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
ATF_TC(array_replace_dict_by_name_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(array_replace_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_array_replace_dict_by_name");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(array_replace_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
prop_array_t orig, new;
|
|
||||||
prop_dictionary_t d;
|
|
||||||
|
|
||||||
orig = prop_array_internalize(axml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(orig), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
new = prop_array_internalize(axml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(new), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
d = prop_dictionary_create();
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "pkgname", "bfoo"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "pkgver", "bfoo-1.2"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "version", "1.2"), true);
|
|
||||||
|
|
||||||
ATF_REQUIRE_EQ(xbps_array_replace_dict_by_name(orig, d, "afoo"), 0);
|
|
||||||
ATF_REQUIRE_EQ(prop_array_equals(orig, new), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(array_replace_dict_by_pattern_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(array_replace_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_array_replace_dict_by_pattern");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(array_replace_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
prop_array_t orig, new;
|
|
||||||
prop_dictionary_t d;
|
|
||||||
|
|
||||||
orig = prop_array_internalize(axml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(orig), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
new = prop_array_internalize(axml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(new), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
d = prop_dictionary_create();
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "pkgname", "bfoo"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "pkgver", "bfoo-1.2"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_set_cstring_nocopy(d, "version", "1.2"), true);
|
|
||||||
|
|
||||||
ATF_REQUIRE_EQ(xbps_array_replace_dict_by_pattern(orig, d, "afoo>=1.0"), 0);
|
|
||||||
ATF_REQUIRE_EQ(prop_array_equals(orig, new), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TP_ADD_TCS(tp)
|
|
||||||
{
|
|
||||||
ATF_TP_ADD_TC(tp, array_replace_dict_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, array_replace_dict_by_pattern_test);
|
|
||||||
|
|
||||||
return atf_no_error();
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
TOPDIR = ../../..
|
|
||||||
-include $(TOPDIR)/config.mk
|
|
||||||
|
|
||||||
TEST = plist_find_array_test
|
|
||||||
|
|
||||||
include ../Makefile.inc
|
|
||||||
include $(TOPDIR)/mk/test.mk
|
|
@ -1,176 +0,0 @@
|
|||||||
/*-
|
|
||||||
* Copyright (c) 2012 Juan Romero Pardines.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
||||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
||||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
||||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*-
|
|
||||||
*/
|
|
||||||
#include <string.h>
|
|
||||||
#include <atf-c.h>
|
|
||||||
#include <xbps_api.h>
|
|
||||||
|
|
||||||
static const char arrayxml[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>afoo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>1.1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>afoo-1.1</string>\n"
|
|
||||||
" <key>provides</key>\n"
|
|
||||||
" <array>\n"
|
|
||||||
" <string>virtualpkg-9999</string>\n"
|
|
||||||
" </array>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
"</array>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_array_by_name_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_array_by_name");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
|
|
||||||
a = prop_array_internalize(arrayxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* match by pkgname */
|
|
||||||
dr = xbps_find_pkg_in_array_by_name(&xh, a, "foo", NULL);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_array_by_pattern_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_array_by_pattern");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
|
|
||||||
a = prop_array_internalize(arrayxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* match by pkgpattern */
|
|
||||||
dr = xbps_find_pkg_in_array_by_pattern(&xh, a, "foo>=2.0", NULL);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_array_by_pkgver_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_array_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_array_by_pkgver");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_array_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
|
|
||||||
a = prop_array_internalize(arrayxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* exact match by pkgver */
|
|
||||||
dr = xbps_find_pkg_in_array_by_pkgver(&xh, a, "foo-2.0", NULL);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_virtualpkg_in_array_by_name_test);
|
|
||||||
ATF_TC_HEAD(find_virtualpkg_in_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_virtualpkg_in_array_by_name");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_virtualpkg_in_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
const char *pkgname;
|
|
||||||
|
|
||||||
a = prop_array_internalize(arrayxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
dr = xbps_find_virtualpkg_in_array_by_name(&xh, a, "virtualpkg");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgname", &pkgname);
|
|
||||||
ATF_REQUIRE_STREQ(pkgname, "afoo");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_virtualpkg_in_array_by_pattern_test);
|
|
||||||
ATF_TC_HEAD(find_virtualpkg_in_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_virtualpkg_in_array_by_pattern");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_virtualpkg_in_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t dr;
|
|
||||||
const char *pkgname;
|
|
||||||
|
|
||||||
a = prop_array_internalize(arrayxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
dr = xbps_find_virtualpkg_in_array_by_pattern(&xh, a, "virtualpkg>=9999");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgname", &pkgname);
|
|
||||||
ATF_REQUIRE_STREQ(pkgname, "afoo");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TP_ADD_TCS(tp)
|
|
||||||
{
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_array_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_array_by_pattern_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_array_by_pkgver_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_virtualpkg_in_array_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_virtualpkg_in_array_by_pattern_test);
|
|
||||||
|
|
||||||
return atf_no_error();
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
TOPDIR = ../../..
|
|
||||||
-include $(TOPDIR)/config.mk
|
|
||||||
|
|
||||||
TEST = plist_find_dictionary_test
|
|
||||||
|
|
||||||
include ../Makefile.inc
|
|
||||||
include $(TOPDIR)/mk/test.mk
|
|
@ -1,181 +0,0 @@
|
|||||||
/*-
|
|
||||||
* Copyright (c) 2012 Juan Romero Pardines.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
||||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
||||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
||||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*-
|
|
||||||
*/
|
|
||||||
#include <string.h>
|
|
||||||
#include <atf-c.h>
|
|
||||||
#include <xbps_api.h>
|
|
||||||
|
|
||||||
static const char dictxml[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<dict>\n"
|
|
||||||
" <key>packages</key>\n"
|
|
||||||
" <array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>afoo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>1.1_1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>afoo-1.1_1</string>\n"
|
|
||||||
" <key>provides</key>\n"
|
|
||||||
" <array>\n"
|
|
||||||
" <string>virtualpkg-9999_1</string>\n"
|
|
||||||
" </array>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0_1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0_1</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" </array>\n"
|
|
||||||
"</dict>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_dict_by_name_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_dict_by_name");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t d, dr;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* match by pkgname */
|
|
||||||
dr = xbps_find_pkg_in_dict_by_name(&xh, d, "packages", "foo");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_dict_by_pattern_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_dict_by_pattern");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t d, dr;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* match by pkgpattern */
|
|
||||||
dr = xbps_find_pkg_in_dict_by_pattern(&xh, d, "packages", "foo>=2.0");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_pkg_in_dict_by_pkgver_test);
|
|
||||||
ATF_TC_HEAD(find_pkg_in_dict_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_pkg_in_dict_by_pkgver");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_pkg_in_dict_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t d, dr;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* exact match by pkgver */
|
|
||||||
dr = xbps_find_pkg_in_dict_by_pkgver(&xh, d, "packages", "foo-2.0_1");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_virtualpkg_in_dict_by_pattern_test);
|
|
||||||
ATF_TC_HEAD(find_virtualpkg_in_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_virtualpkg_in_dict_by_pattern");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_virtualpkg_in_dict_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t d, dr;
|
|
||||||
const char *pkgver;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
/* match virtualpkg by pattern */
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
dr = xbps_find_virtualpkg_in_dict_by_pattern(&xh, d, "packages", "virtualpkg>=9999");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgver", &pkgver);
|
|
||||||
ATF_REQUIRE_STREQ(pkgver, "afoo-1.1_1");
|
|
||||||
|
|
||||||
dr = xbps_find_virtualpkg_in_dict_by_pattern(&xh, d, "packages", "virtualpkg<=9999_1");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgver", &pkgver);
|
|
||||||
ATF_REQUIRE_STREQ(pkgver, "afoo-1.1_1");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(find_virtualpkg_in_dict_by_name_test);
|
|
||||||
ATF_TC_HEAD(find_virtualpkg_in_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_find_virtualpkg_in_dict_by_name");
|
|
||||||
}
|
|
||||||
ATF_TC_BODY(find_virtualpkg_in_dict_by_name_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_dictionary_t d, dr;
|
|
||||||
const char *pkgver;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
/* match virtualpkg by name */
|
|
||||||
dr = xbps_find_virtualpkg_in_dict_by_name(&xh, d, "packages", "virtualpkg");
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(dr), PROP_TYPE_DICTIONARY);
|
|
||||||
prop_dictionary_get_cstring_nocopy(dr, "pkgver", &pkgver);
|
|
||||||
ATF_REQUIRE_STREQ(pkgver, "afoo-1.1_1");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TP_ADD_TCS(tp)
|
|
||||||
{
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_dict_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_dict_by_pattern_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_pkg_in_dict_by_pkgver_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_virtualpkg_in_dict_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, find_virtualpkg_in_dict_by_pattern_test);
|
|
||||||
|
|
||||||
return atf_no_error();
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
TOPDIR = ../../..
|
|
||||||
-include $(TOPDIR)/config.mk
|
|
||||||
|
|
||||||
TEST = plist_remove_test
|
|
||||||
|
|
||||||
include ../Makefile.inc
|
|
||||||
include $(TOPDIR)/mk/test.mk
|
|
@ -1,230 +0,0 @@
|
|||||||
/*-
|
|
||||||
* Copyright (c) 2012 Juan Romero Pardines.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
||||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
||||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
||||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*-
|
|
||||||
*/
|
|
||||||
#include <atf-c.h>
|
|
||||||
#include <xbps_api.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
static const char dictxml[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<dict>\n"
|
|
||||||
" <key>packages</key>\n"
|
|
||||||
" <array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>afoo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>1.1_1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>afoo-1.1_1</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0_1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0_1</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" </array>\n"
|
|
||||||
"</dict>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
static const char dictxml2[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<dict>\n"
|
|
||||||
" <key>packages</key>\n"
|
|
||||||
" <array>\n"
|
|
||||||
" <dict>\n"
|
|
||||||
" <key>pkgname</key>\n"
|
|
||||||
" <string>foo</string>\n"
|
|
||||||
" <key>version</key>\n"
|
|
||||||
" <string>2.0_1</string>\n"
|
|
||||||
" <key>pkgver</key>\n"
|
|
||||||
" <string>foo-2.0_1</string>\n"
|
|
||||||
" </dict>\n"
|
|
||||||
" </array>\n"
|
|
||||||
"</dict>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
static const char axml[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<array>\n"
|
|
||||||
" <string>foo-1.0_1</string>\n"
|
|
||||||
" <string>blah-2.0_1</string>\n"
|
|
||||||
"</array>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
static const char axml2[] =
|
|
||||||
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
||||||
"<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
|
||||||
"<plist version=\"1.0\">\n"
|
|
||||||
"<array>\n"
|
|
||||||
" <string>blah-2.0_1</string>\n"
|
|
||||||
"</array>\n"
|
|
||||||
"</plist>\n";
|
|
||||||
|
|
||||||
ATF_TC(remove_pkg_from_array_by_name_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(remove_pkg_from_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_remove_pkg_from_array_by_name");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(remove_pkg_from_array_by_name_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t d, d2;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
d2 = prop_dictionary_internalize(dictxml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d2), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
a = prop_dictionary_get(d, "packages");
|
|
||||||
ATF_REQUIRE_EQ(xbps_remove_pkg_from_array_by_name(&xh, a, "afoo", NULL), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_equals(d, d2), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(remove_pkg_from_array_by_pattern_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(remove_pkg_from_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_remove_pkg_from_array_by_pattern");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(remove_pkg_from_array_by_pattern_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t d, d2;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
d2 = prop_dictionary_internalize(dictxml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d2), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
a = prop_dictionary_get(d, "packages");
|
|
||||||
ATF_REQUIRE_EQ(xbps_remove_pkg_from_array_by_pattern(&xh, a, "afoo>=1.0", NULL), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_equals(d, d2), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(remove_pkg_from_array_by_pkgver_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(remove_pkg_from_array_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_remove_pkg_from_array_by_pkgver");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(remove_pkg_from_array_by_pkgver_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a;
|
|
||||||
prop_dictionary_t d, d2;
|
|
||||||
|
|
||||||
d = prop_dictionary_internalize(dictxml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
d2 = prop_dictionary_internalize(dictxml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(d2), PROP_TYPE_DICTIONARY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
a = prop_dictionary_get(d, "packages");
|
|
||||||
ATF_REQUIRE_EQ(xbps_remove_pkg_from_array_by_pkgver(&xh, a, "afoo-1.1_1", NULL), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_dictionary_equals(d, d2), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(remove_string_from_array_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(remove_string_from_array_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_remove_string_from_array");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(remove_string_from_array_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a, a2;
|
|
||||||
|
|
||||||
a = prop_array_internalize(axml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
a2 = prop_array_internalize(axml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a2), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
ATF_REQUIRE_EQ(xbps_remove_string_from_array(&xh, a, "foo-1.0_1"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_array_equals(a, a2), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC(remove_pkgname_from_array_test);
|
|
||||||
|
|
||||||
ATF_TC_HEAD(remove_pkgname_from_array_test, tc)
|
|
||||||
{
|
|
||||||
atf_tc_set_md_var(tc, "descr", "Test xbps_remove_pkgname_from_array");
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TC_BODY(remove_pkgname_from_array_test, tc)
|
|
||||||
{
|
|
||||||
struct xbps_handle xh;
|
|
||||||
prop_array_t a, a2;
|
|
||||||
|
|
||||||
a = prop_array_internalize(axml);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
a2 = prop_array_internalize(axml2);
|
|
||||||
ATF_REQUIRE_EQ(prop_object_type(a2), PROP_TYPE_ARRAY);
|
|
||||||
|
|
||||||
memset(&xh, 0, sizeof(xh));
|
|
||||||
xbps_init(&xh);
|
|
||||||
ATF_REQUIRE_EQ(xbps_remove_pkgname_from_array(&xh, a, "foo"), true);
|
|
||||||
ATF_REQUIRE_EQ(prop_array_equals(a, a2), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
ATF_TP_ADD_TCS(tp)
|
|
||||||
{
|
|
||||||
ATF_TP_ADD_TC(tp, remove_pkg_from_array_by_name_test);
|
|
||||||
ATF_TP_ADD_TC(tp, remove_pkg_from_array_by_pattern_test);
|
|
||||||
ATF_TP_ADD_TC(tp, remove_pkg_from_array_by_pkgver_test);
|
|
||||||
ATF_TP_ADD_TC(tp, remove_string_from_array_test);
|
|
||||||
ATF_TP_ADD_TC(tp, remove_pkgname_from_array_test);
|
|
||||||
|
|
||||||
return atf_no_error();
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user