summaryrefslogtreecommitdiffstats
path: root/driver/test-screens.c
blob: 141b7ad91b1e33366b2178a6a26209e258ee16e1 (plain) (blame)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/* test-screens.c --- some test cases for the "monitor sanity" checks.
 * xscreensaver, Copyright © 2008-2021 Jamie Zawinski <jwz@jwz.org>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.  No representations are made about the suitability of this
 * software for any purpose.  It is provided "as is" without express or 
 * implied warranty.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <X11/Xlib.h>

#include "blurb.h"
#include "visual.h"
#include "screens.h"

#undef WidthOfScreen
#undef HeightOfScreen
#define WidthOfScreen(s) 10240
#define HeightOfScreen(s) 10240

static const char *
failstr (monitor_sanity san)
{
  switch (san) {
  case S_SANE:      return "OK";
  case S_ENCLOSED:  return "ENC";
  case S_DUPLICATE: return "DUP";
  case S_OVERLAP:   return "OVR";
  case S_OFFSCREEN: return "OFF";
  case S_DISABLED:  return "DIS";
  default: abort(); break;
  }
}


static void
test (int testnum, const char *screens, const char *desired)
{
  monitor *monitors[100];
  char result[2048];
  char *out = result;
  int i, nscreens = 0;
  char *token = strtok (strdup(screens), ",");
  while (token)
    {
      monitor *m = calloc (1, sizeof (monitor));
      char c;
      m->id = (testnum * 1000) + nscreens;
      if (5 == sscanf (token, "%dx%d+%d+%d@%d%c", 
                       &m->width, &m->height, &m->x, &m->y, 
                       (int *) &m->screen, &c))
        ;
      else if (4 != sscanf (token, "%dx%d+%d+%d%c", 
                            &m->width, &m->height, &m->x, &m->y, &c))
        {
          fprintf (stderr, "%s: unparsable geometry: %s\n", blurb(), token);
          exit (1);
        }
      monitors[nscreens] = m;
      nscreens++;
      token = strtok (0, ",");
    }
  monitors[nscreens] = 0;

  check_monitor_sanity (monitors);

  *out = 0;
  for (i = 0; i < nscreens; i++)
    {
      monitor *m = monitors[i];
      if (out != result) *out++ = ',';
      if (m->sanity == S_SANE)
        {
          sprintf (out, "%dx%d+%d+%d", m->width, m->height, m->x, m->y);
          if (m->screen)
            sprintf (out + strlen(out), "@%d", (int) m->screen);
        }
      else
        strcpy (out, failstr (m->sanity));
      out += strlen(out);
    }
  *out = 0;

  if (!strcmp (result, desired))
    fprintf (stderr, "%s: test %2d OK\n", blurb(), testnum);
  else
    fprintf (stderr, "%s: test %2d FAILED:\n"
             "%s:   given: %s\n"
             "%s:  wanted: %s\n"
             "%s:     got: %s\n",
             blurb(), testnum,
             blurb(), screens, 
             blurb(), desired, 
             blurb(), result);

# if 0
  {
    saver_info SI;
    SI.monitor_layout = monitors;
    describe_monitor_layout (&SI);
  }
# endif

}

static void
run_tests(void)
{
  int i = 1;
# define A(a)   test (i++, a, a);
# define B(a,b) test (i++, a, b)

  A("");
  A("1024x768+0+0");
  A("1024x768+0+0,1024x768+1024+0");
  A("1024x768+0+0,1024x768+0+768");
  A("1024x768+0+0,1024x768+0+768,1024x768+1024+0");
  A("800x600+0+0,800x600+0+0@1,800x600+10+0@2");

  B("1024x768+999999+0",
    "OFF");
  B("1024x768+-999999+-999999",
    "OFF");
  B("1024x768+0+0,1024x768+0+0",
    "1024x768+0+0,DUP");
  B("1024x768+0+0,1024x768+0+0,1024x768+0+0",
    "1024x768+0+0,DUP,DUP");
  B("1024x768+0+0,1024x768+1024+0,1024x768+0+0",
    "1024x768+0+0,1024x768+1024+0,DUP");
  B("1280x1024+0+0,1024x768+0+64,800x600+0+0,640x480+0+0,720x400+0+0",
    "1280x1024+0+0,ENC,ENC,ENC,ENC");
  B("1024x768+0+64,1280x1024+0+0,800x600+0+0,640x480+0+0,800x600+0+0,720x400+0+0",
    "ENC,1280x1024+0+0,ENC,ENC,ENC,ENC");
  B("1024x768+0+64,1280x1024+0+0,800x600+0+0,640x480+0+0,1280x1024+0+0,720x400+0+0",
    "ENC,1280x1024+0+0,ENC,ENC,DUP,ENC");
  B("720x400+0+0,640x480+0+0,800x600+0+0,1024x768+0+64,1280x1024+0+0",
    "ENC,ENC,ENC,ENC,1280x1024+0+0");
  B("1280x1024+0+0,800x600+1280+0,800x600+1300+0",
    "1280x1024+0+0,800x600+1280+0,OVR");
  B("1280x1024+0+0,800x600+1280+0,800x600+1300+0,1280x1024+0+0,800x600+1280+0",
    "1280x1024+0+0,800x600+1280+0,OVR,DUP,DUP");

  /*  +-------------+----+  +------+---+   1: 1440x900,  widescreen display
      |             :    |  | 3+4  :   |   2: 1280x1024, conventional display
      |     1+2     : 1  |  +......+   |   3: 1024x768,  laptop
      |             :    |  |  3       |   4: 800x600,   external projector
      +.............+----+  +----------+
      |      2      |
      |             |
      +-------------+
   */
  B("1440x900+0+0,1280x1024+0+0,1024x768+1440+0,800x600+1440+0",
    "1440x900+0+0,OVR,1024x768+1440+0,ENC");
  B("800x600+0+0,800x600+0+0,800x600+800+0",
    "800x600+0+0,DUP,800x600+800+0");
  B("1600x1200+0+0,1360x768+0+0",
    "1600x1200+0+0,ENC");
  B("1600x1200+0+0,1360x768+0+0,1600x1200+0+0@1,1360x768+0+0@1",
    "1600x1200+0+0,ENC,1600x1200+0+0@1,ENC");
}


int
main (int argc, char **argv)
{
  char *s;
  progname = argv[0];
  s = strrchr(progname, '/');
  if (s) progname = s+1;
  if (argc != 1)
    {
      fprintf (stderr, "usage: %s\n", argv[0]);
      exit (1);
    }

  run_tests();

  exit (0);
}