aboutsummaryrefslogtreecommitdiff
path: root/tests/chargen.c
blob: 5f5a1704a81afde2be457c2e1434484038af79c9 (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* This file is part of GNU Pies testsuite.
   Copyright (C) 2019-2023 Sergey Poznyakoff

   GNU Pies is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   GNU Pies 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 General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with GNU Pies.  If not, see <http://www.gnu.org/licenses/>. */

#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <c-ctype.h>
#include <libpies.h>

enum { LINESIZ = 72 };

static int
next_char (int stop)
{
  static int ch = 0;
  static int i = 0;
  static int c;
  int ret;
  
  switch (i++)
    {
    case 0:
      do
	ch = (ch + 1) % 128;
      while (!c_isprint (ch));
      if (ch == stop)
	return 0;
      c = ch;
      break;
      
    case LINESIZ:
      return '\r';

    case LINESIZ+1:
      i = 0;
      return '\n';
    }

  ret = c;
  do
    c = (c + 1) % 128;
  while (!c_isprint (c));
  
  return ret;
}

int
main (int argc, char **argv)
{
  struct pies_url *url;
  int fd;
  FILE *fp;
  unsigned n;
  int c, first;
  char *progname = argv[0];
  
  if (argc != 2)
    {
      fprintf (stderr, "usage: %s URL\n", progname);
      fprintf (stderr, "Tests the character generator protocol\n");
      return 64;
    }

  if (pies_url_create (&url, argv[1]))
    {
      perror (argv[1]);
      return 64;
    }

  fd = url_connect (url, NULL);
  if (fd == -1)
    return 1;
  fp = fdopen (fd, "r");
  if (!fp)
    {
      perror ("fdopen");
      return 1;
    }
  
  first = next_char (0);
  c = first;
  do
    {
      int in = fgetc (fp);
      if (in == EOF)
	{
	  fprintf (stderr, "%s: unexpected EOF in %u\n", progname, n);
	  return 1;
	}
      if (in != c)
	{
	  fprintf (stderr, "%s: got %d instead of %d in %u\n",
		   progname, in, c, n);
	  return 1;
	}
      n++;
    }
  while ((c = next_char (first)) != 0);
  return 0;
}
	    
      
  

Return to:

Send suggestions and report system problems to the System administrator.