Remove opkg_package_t from libopkg_test.c. Also, use OFFLINE_ROOT env var.
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Wed, 9 Dec 2009 06:05:08 +0000 (06:05 +0000)
committergraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Wed, 9 Dec 2009 06:05:08 +0000 (06:05 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@474 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/opkg_conf.c
tests/Makefile.am
tests/libopkg_test.c

index 9d40a21066a472ae855d9693f93fcbe880d714da..47b54380177c458dbd728fda437927a4b1cdf4c3 100644 (file)
@@ -443,6 +443,9 @@ opkg_conf_init(const args_t *args)
 
      nv_pair_list_init(&conf->arch_list);
 
+     if (!conf->offline_root)
+          conf->offline_root = xstrdup(getenv("OFFLINE_ROOT"));
+
      if (args->conf_file) {
          struct stat stat_buf;
          err = stat(args->conf_file, &stat_buf);
index 2f7062c81b49eec120d8b9b09eab265607df6a45..1a6f56520c64f6e5c49d4b8e227518512f39c34a 100644 (file)
@@ -1,4 +1,4 @@
-AM_CFLAGS = $(ALL_CFLAGS) -I${top_srcdir}/libopkg
+AM_CFLAGS = $(ALL_CFLAGS) -Wall -g -O3 -I${top_srcdir}/libopkg
 
 #noinst_PROGRAMS = opkg_hash_test opkg_extract_test
 #noinst_PROGRAMS = libopkg_test opkg_active_list_test
@@ -18,5 +18,6 @@ noinst_PROGRAMS = libopkg_test
 
 libopkg_test_LDADD = $(top_builddir)/libopkg/libopkg.la
 libopkg_test_SOURCE = libopkg_test.c
+libopkg_test_LDFLAGS = -static
 
 
index 42ef9003fe44beadb8cc789df907e29e4552eeab..70a924cb739615a6b6bfa4454e0d8bd8f3231566 100644 (file)
@@ -2,8 +2,9 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
+#include <libgen.h>
 
-opkg_package_t *find_pkg = NULL;
+pkg_t *find_pkg = NULL;
 
 char *errors[10] = {
   "No Error",
@@ -29,12 +30,12 @@ progress_callback (const opkg_progress_data_t *progress, void *data)
 }
 
 void
-package_list_callback (opkg_package_t *pkg, void *data)
+package_list_callback (pkg_t *pkg, void *data)
 {
-  static install_count = 0;
-  static total_count = 0;
+  static int install_count = 0;
+  static int total_count = 0;
 
-  if (pkg->installed)
+  if (pkg->state_status == SS_INSTALLED)
     install_count++;
 
   total_count++;
@@ -47,19 +48,16 @@ package_list_callback (opkg_package_t *pkg, void *data)
     /* store the first package to print out later */
     find_pkg = pkg;
   }
-  else
-    opkg_package_free (pkg);
 }
 
 void
-package_list_upgradable_callback (opkg_package_t *pkg, void *data)
+package_list_upgradable_callback (pkg_t *pkg, void *data)
 {
   printf ("%s - %s\n", pkg->name, pkg->version);
-  opkg_package_free (pkg);
 }
 
 void
-print_package (opkg_package_t *pkg)
+print_package (pkg_t *pkg)
 {
   printf (
       "Name:         %s\n"
@@ -68,16 +66,16 @@ print_package (opkg_package_t *pkg)
       "Architecture: %s\n"
       "Description:  %s\n"
       "Tags:         %s\n"
-      "Size:         %d\n"
-      "Installed:    %s\n",
+      "Size:         %ld\n"
+      "Status:       %d\n",
       pkg->name,
       pkg->version,
-      pkg->repository,
+      pkg->src->name,
       pkg->architecture,
       pkg->description,
       pkg->tags,
       pkg->size,
-      (pkg->installed ? "True" : "False")
+      pkg->state_status
       );
 }
 
@@ -86,7 +84,7 @@ void
 opkg_test (void)
 {
   int err;
-  opkg_package_t *pkg;
+  pkg_t *pkg;
 
   err = opkg_update_package_lists (progress_callback, "Updating...");
   printf ("\nopkg_update_package_lists returned %d (%s)\n", err, errors[err]);
@@ -97,15 +95,13 @@ opkg_test (void)
   if (find_pkg)
   {
     printf ("Finding package \"%s\"\n", find_pkg->name);
-    pkg = opkg_find_package (find_pkg->name, find_pkg->version, find_pkg->architecture, find_pkg->repository);
+    pkg = opkg_find_package (find_pkg->name, find_pkg->version, find_pkg->architecture, find_pkg->src->name);
     if (pkg)
     {
       print_package (pkg);
-      opkg_package_free (pkg);
     }
     else
       printf ("Package \"%s\" not found!\n", find_pkg->name);
-    opkg_package_free (find_pkg);
   }
   else
     printf ("No package available to test find_package.\n");
@@ -130,7 +126,7 @@ opkg_test (void)
 int
 main (int argc, char **argv)
 {
-  opkg_package_t *pkg;
+  pkg_t *pkg;
   int err;
 
   if (argc < 2)
@@ -150,12 +146,14 @@ main (int argc, char **argv)
     , basename (argv[0]));
     exit (0);
   }
-  
-  opkg_new ();
-
-  opkg_set_option ("offline_root", "/tmp/");
 
-  opkg_re_read_config_files ();
+  setenv("OFFLINE_ROOT", "/tmp", 0);
+  if (opkg_new ()) {
+         printf("opkg_new() failed. This sucks.\n");
+         print_error_list();
+         return 1;
+  }
 
   switch (argv[1][0])
   {
@@ -164,11 +162,9 @@ main (int argc, char **argv)
       if (pkg)
       {
        print_package (pkg);
-       opkg_package_free (pkg);
       }
       else
        printf ("Package \"%s\" not found!\n", find_pkg->name);
-      opkg_package_free (pkg);
       break;
     case 'i':
       err = opkg_install_package (argv[1], progress_callback, "Installing...");
@@ -176,8 +172,6 @@ main (int argc, char **argv)
       break;
 
     case 'u':
-      if (strlen (argv[1]) < 4)
-        printf ("");
       if (argv[1][3] == 'd')
       {
         err = opkg_update_package_lists (progress_callback, "Updating...");