]> git.saurik.com Git - apt.git/blobdiff - test/libapt/sourcelist_test.cc
bring back deb822 sources.list entries as .sources
[apt.git] / test / libapt / sourcelist_test.cc
index 6e83d08e022f6fa2a719c25a9671be4684e99e29..83c441092f6622e43db9b31199c6a58ae7ce1f13 100644 (file)
@@ -1,52 +1,39 @@
+#include <config.h>
+
 #include <apt-pkg/sourcelist.h>
-#include <apt-pkg/tagfile.h>
+#include <apt-pkg/fileutl.h>
 
-#include "assert.h"
+#include <string>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 
-char *tempfile = NULL;
-int tempfile_fd = -1;
+#include <gtest/gtest.h>
 
-void remove_tmpfile(void)
-{
-   if (tempfile_fd > 0)
-      close(tempfile_fd);
-   if (tempfile != NULL) {
-      unlink(tempfile);
-      free(tempfile);
-   }
-}
+#include "file-helpers.h"
 
-int main(int argc, char *argv[])
+TEST(SourceListTest,ParseFileDeb822)
 {
-   const char contents[] = ""
-      "Type: deb\n"
-      "URL: http://ftp.debian.org/debian\n"
-      "Dist: stable\n"
-      "Section: main\n"
-      "Comment: Some random string\n"
-      " that can be very long\n"
-      "\n"
-      "Type: deb\n"
-      "URL: http://ftp.debian.org/debian\n"
-      "Dist: unstable\n"
-      "Section: main non-free\n"
-      ;
-
    FileFd fd;
-   tempfile = strdup("apt-test.XXXXXXXX");
-   tempfile_fd = mkstemp(tempfile);
-
-   /* (Re-)Open (as FileFd), write and seek to start of the temp file */
-   equals(fd.OpenDescriptor(tempfile_fd, FileFd::ReadWrite), true);
-   equals(fd.Write(contents, strlen(contents)), true);
-   equals(fd.Seek(0), true);
-
-   pkgSourceList sources(tempfile);
-   equals(sources.size(), 2);
-
-   /* clean up handled by atexit handler, so just return here */
-   return 0;
+   std::string tempfile;
+   createTemporaryFile("parsefiledeb822.XXXXXX.sources", fd, &tempfile,
+      "Types: deb\n"
+      "URIs: http://ftp.debian.org/debian\n"
+      "Suites: stable\n"
+      "Components: main\n"
+      "Description: short\n"
+      " long description that can be very long\n"
+      "\n"
+      "Types: deb\n"
+      "URIs: http://ftp.debian.org/debian\n"
+      "Suites: unstable\n"
+      "Components: main non-free\n");
+   fd.Close();
+
+   pkgSourceList sources;
+   EXPECT_EQ(true, sources.Read(tempfile));
+   EXPECT_EQ(2, sources.size());
+
+   if (tempfile.empty() == false)
+      unlink(tempfile.c_str());
 }