]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/testppd.c
Import CUPS trunk (1.4svn) r7116.
[thirdparty/cups.git] / cups / testppd.c
index 5a66a3d4a81f4f9c91219c3da9ee6f4a3da6d1fa..e88a125682f6bbc5294a4936a8022024e5e632d5 100644 (file)
@@ -1,25 +1,16 @@
 /*
- * "$Id: testppd.c 4939 2006-01-17 18:54:33Z mike $"
+ * "$Id: testppd.c 6936 2007-09-10 18:15:36Z mike $"
  *
  *   PPD test program for the Common UNIX Printing System (CUPS).
  *
+ *   Copyright 2007 by Apple Inc.
  *   Copyright 1997-2006 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  *   This file is subject to the Apple OS-Developed Software exception.
  *
 #endif /* WIN32 */
 
 
+/*
+ * Test data...
+ */
+
+static const char      *default_code =
+                       "[{\n"
+                       "%%BeginFeature: *PageRegion Letter\n"
+                       "PageRegion=Letter\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *InputSlot Tray\n"
+                       "InputSlot=Tray\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *IntOption None\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *StringOption None\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n";
+
+static const char      *custom_code =
+                       "[{\n"
+                       "%%BeginFeature: *InputSlot Tray\n"
+                       "InputSlot=Tray\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *IntOption None\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *StringOption None\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n"
+                       "[{\n"
+                       "%%BeginFeature: *CustomPageSize True\n"
+                       "400\n"
+                       "500\n"
+                       "0\n"
+                       "0\n"
+                       "0\n"
+                       "PageSize=Custom\n"
+                       "%%EndFeature\n"
+                       "} stopped cleartomark\n";
+
+
 /*
  * 'main()' - Main entry.
  */
@@ -55,25 +96,284 @@ main(int  argc,                            /* I - Number of command-line arguments */
 {
   ppd_file_t   *ppd;                   /* PPD file loaded from disk */
   int          status;                 /* Status of tests (0 = success, 1 = fail) */
+  int          conflicts;              /* Number of conflicts */
+  char         *s;                     /* String */
+  char         buffer[8192];           /* String buffer */
 
 
   status = 0;
 
-  fputs("ppdOpenFile: ", stdout);
+  if (argc == 1)
+  {
+    fputs("ppdOpenFile: ", stdout);
+
+    if ((ppd = ppdOpenFile("test.ppd")) != NULL)
+      puts("PASS");
+    else
+    {
+      ppd_status_t     err;            /* Last error in file */
+      int              line;           /* Line number in file */
+
+
+      status ++;
+      err = ppdLastError(&line);
+
+      printf("FAIL (%s on line %d)\n", ppdErrorString(err), line);
+    }
+
+    fputs("ppdMarkDefaults: ", stdout);
+    ppdMarkDefaults(ppd);
+
+    if ((conflicts = ppdConflicts(ppd)) == 0)
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (%d conflicts)\n", conflicts);
+    }
+
+    fputs("ppdEmitString (defaults): ", stdout);
+    if ((s = ppdEmitString(ppd, PPD_ORDER_ANY, 0.0)) != NULL &&
+       !strcmp(s, default_code))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (%d bytes instead of %d)\n", s ? (int)strlen(s) : 0,
+            (int)strlen(default_code));
+
+      if (s)
+       puts(s);
+    }
+
+    if (s)
+      free(s);
+
+    fputs("ppdEmitString (custom size): ", stdout);
+    ppdMarkOption(ppd, "PageSize", "Custom.400x500");
+
+    if ((s = ppdEmitString(ppd, PPD_ORDER_ANY, 0.0)) != NULL &&
+       !strcmp(s, custom_code))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (%d bytes instead of %d)\n", s ? (int)strlen(s) : 0,
+            (int)strlen(custom_code));
+
+      if (s)
+       puts(s);
+    }
+
+    if (s)
+      free(s);
+
+   /*
+    * Test localization...
+    */
+
+    fputs("ppdLocalizeIPPReason(text): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", NULL, buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "Foo Reason"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"Foo Reason\")\n", buffer);
+    }
+
+    fputs("ppdLocalizeIPPReason(http): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", "http", buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "http://foo/bar.html"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"http://foo/bar.html\")\n", buffer);
+    }
+
+    fputs("ppdLocalizeIPPReason(help): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", "help", buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "help:anchor='foo'%20bookID=Vendor%20Help"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"help:anchor='foo'%%20bookID=Vendor%%20Help\")\n", buffer);
+    }
 
-  if ((ppd = ppdOpenFile("test.ppd")) != NULL)
-    puts("PASS");
+    fputs("ppdLocalizeIPPReason(file): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", "file", buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "/help/foo/bar.html"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"/help/foo/bar.html\")\n", buffer);
+    }
+
+    putenv("LANG=fr");
+
+    fputs("ppdLocalizeIPPReason(fr text): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", NULL, buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "La Long Foo Reason"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"La Long Foo Reason\")\n", buffer);
+    }
+
+    putenv("LANG=zh_TW");
+
+    fputs("ppdLocalizeIPPReason(zh_TW text): ", stdout);
+    if (ppdLocalizeIPPReason(ppd, "foo", NULL, buffer, sizeof(buffer)) &&
+        !strcmp(buffer, "Number 1 Foo Reason"))
+      puts("PASS");
+    else
+    {
+      status ++;
+      printf("FAIL (\"%s\" instead of \"Number 1 Foo Reason\")\n", buffer);
+    }
+  }
   else
   {
-    ppd_status_t       err;            /* Last error in file */
-    int                        line;           /* Line number in file */
+    if ((ppd = ppdOpenFile(argv[1])) == NULL)
+    {
+      ppd_status_t     err;            /* Last error in file */
+      int              line;           /* Line number in file */
+
+
+      status ++;
+      err = ppdLastError(&line);
+
+      printf("%s: %s on line %d\n", argv[1], ppdErrorString(err), line);
+    }
+    else
+    {
+      int              i, j, k;        /* Looping vars */
+      ppd_attr_t       *attr;          /* Current attribute */
+      ppd_group_t      *group;         /* Option group */
+      ppd_option_t     *option;        /* Option */
+      ppd_coption_t    *coption;       /* Custom option */
+      ppd_cparam_t     *cparam;        /* Custom parameter */
+      char             lang[255];      /* LANG environment variable */
+
+
+      if (argc > 2)
+      {
+        snprintf(lang, sizeof(lang), "LANG=%s", argv[2]);
+       putenv(lang);
+      }
+
+      ppdLocalize(ppd);
+
+      for (i = ppd->num_groups, group = ppd->groups;
+          i > 0;
+          i --, group ++)
+      {
+       printf("%s (%s):\n", group->name, group->text);
+
+       for (j = group->num_options, option = group->options;
+            j > 0;
+            j --, option ++)
+       {
+         printf("    %s (%s):\n", option->keyword, option->text);
 
+         for (k = 0; k < option->num_choices; k ++)
+           printf("        - %s (%s)\n", option->choices[k].choice,
+                  option->choices[k].text);
 
-    status ++;
-    err = ppdLastError(&line);
+          if ((coption = ppdFindCustomOption(ppd, option->keyword)) != NULL)
+         {
+           for (cparam = (ppd_cparam_t *)cupsArrayFirst(coption->params);
+                cparam;
+                cparam = (ppd_cparam_t *)cupsArrayNext(coption->params))
+            {
+             switch (cparam->type)
+             {
+               case PPD_CUSTOM_CURVE :
+                   printf("              %s(%s): PPD_CUSTOM_CURVE (%g to %g)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_curve,
+                          cparam->maximum.custom_curve);
+                   break;
+
+               case PPD_CUSTOM_INT :
+                   printf("              %s(%s): PPD_CUSTOM_INT (%d to %d)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_int,
+                          cparam->maximum.custom_int);
+                   break;
+
+               case PPD_CUSTOM_INVCURVE :
+                   printf("              %s(%s): PPD_CUSTOM_INVCURVE (%g to %g)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_invcurve,
+                          cparam->maximum.custom_invcurve);
+                   break;
+
+               case PPD_CUSTOM_PASSCODE :
+                   printf("              %s(%s): PPD_CUSTOM_PASSCODE (%d to %d)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_passcode,
+                          cparam->maximum.custom_passcode);
+                   break;
+
+               case PPD_CUSTOM_PASSWORD :
+                   printf("              %s(%s): PPD_CUSTOM_PASSWORD (%d to %d)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_password,
+                          cparam->maximum.custom_password);
+                   break;
+
+               case PPD_CUSTOM_POINTS :
+                   printf("              %s(%s): PPD_CUSTOM_POINTS (%g to %g)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_points,
+                          cparam->maximum.custom_points);
+                   break;
+
+               case PPD_CUSTOM_REAL :
+                   printf("              %s(%s): PPD_CUSTOM_REAL (%g to %g)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_real,
+                          cparam->maximum.custom_real);
+                   break;
+
+               case PPD_CUSTOM_STRING :
+                   printf("              %s(%s): PPD_CUSTOM_STRING (%d to %d)\n",
+                          cparam->name, cparam->text,
+                          cparam->minimum.custom_string,
+                          cparam->maximum.custom_string);
+                   break;
+             }
+           }
+         }
+       }
+      }
+
+      puts("Attributes:");
+
+      for (attr = (ppd_attr_t *)cupsArrayFirst(ppd->sorted_attrs);
+           attr;
+          attr = (ppd_attr_t *)cupsArrayNext(ppd->sorted_attrs))
+        printf("    *%s %s/%s: \"%s\"\n", attr->name, attr->spec,
+              attr->text, attr->value ? attr->value : "");
+    }
+  }
+
+#ifdef __APPLE__
+  if (getenv("MallocStackLogging") && getenv("MallocStackLoggingNoCompact"))
+  {
+    char       command[1024];          /* malloc_history command */
 
-    printf("FAIL (%s on line %d)\n", ppdErrorString(err), line);
+    snprintf(command, sizeof(command), "malloc_history %d -all_by_size",
+            getpid());
+    fflush(stdout);
+    system(command);
   }
+#endif /* __APPLE__ */
 
   ppdClose(ppd);
 
@@ -82,5 +382,5 @@ main(int  argc,                              /* I - Number of command-line arguments */
 
 
 /*
- * End of "$Id: testppd.c 4939 2006-01-17 18:54:33Z mike $".
+ * End of "$Id: testppd.c 6936 2007-09-10 18:15:36Z mike $".
  */