summaryrefslogtreecommitdiffstats
path: root/widget/tests/TestChromeMargin.cpp
blob: 0eed86b208bcd064cda486427da18df542fd062d (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* This tests the margin parsing functionality in nsAttrValue.cpp, which
 * is accessible via nsContentUtils, and is used in setting chromemargins
 * to widget windows. It's located here due to linking issues in the
 * content directory.
 */

/* This test no longer compiles now that we've removed nsIContentUtils (bug
 * 647273).  We need to be internal code in order to include nsContentUtils.h,
 * but defining MOZILLA_INTERNAL_API is not enough to make us internal.
 */

#include "TestHarness.h"

#ifndef MOZILLA_INTERNAL_API
#  error This test needs MOZILLA_INTERNAL_API (see bug 652123)
#endif

#include "nscore.h"
#include "nsContentUtils.h"
#include "nsString.h"

struct DATA {
  bool shouldfail;
  const char* margins;
  int top;
  int right;
  int bottom;
  int left;
};

const bool SHOULD_FAIL = true;
const int SHOULD_PASS = false;

const DATA Data[] = {
    {SHOULD_FAIL, "", 1, 2, 3, 4},
    {SHOULD_FAIL, "1,0,0,0", 1, 2, 3, 4},
    {SHOULD_FAIL, "1,2,0,0", 1, 2, 3, 4},
    {SHOULD_FAIL, "1,2,3,0", 1, 2, 3, 4},
    {SHOULD_FAIL, "4,3,2,1", 1, 2, 3, 4},
    {SHOULD_FAIL, "azsasdasd", 0, 0, 0, 0},
    {SHOULD_FAIL, ",azsasdasd", 0, 0, 0, 0},
    {SHOULD_FAIL, "           ", 1, 2, 3, 4},
    {SHOULD_FAIL,
     "azsdfsdfsdfsdfsdfsasdasd,asdasdasdasdasdasd,asdadasdasd,asdasdasdasd", 0,
     0, 0, 0},
    {SHOULD_FAIL, "as,as,as,as", 0, 0, 0, 0},
    {SHOULD_FAIL, "0,0,0", 0, 0, 0, 0},
    {SHOULD_FAIL, "0,0", 0, 0, 0, 0},
    {SHOULD_FAIL, "4.6,1,1,1", 0, 0, 0, 0},
    {SHOULD_FAIL, ",,,,", 0, 0, 0, 0},
    {SHOULD_FAIL, "1, , , ,", 0, 0, 0, 0},
    {SHOULD_FAIL, "1, , ,", 0, 0, 0, 0},
    {SHOULD_FAIL, "@!@%^&^*()", 1, 2, 3, 4},
    {SHOULD_PASS, "4,3,2,1", 4, 3, 2, 1},
    {SHOULD_PASS, "-4,-3,-2,-1", -4, -3, -2, -1},
    {SHOULD_PASS, "10000,3,2,1", 10000, 3, 2, 1},
    {SHOULD_PASS, "4  , 3   , 2 , 1", 4, 3, 2, 1},
    {SHOULD_PASS, "4,    3   ,2,1", 4, 3, 2, 1},
    {SHOULD_FAIL, "4,3,2,10000000000000 --", 4, 3, 2, 10000000000000},
    {SHOULD_PASS, "4,3,2,1000", 4, 3, 2, 1000},
    {SHOULD_PASS, "2147483647,3,2,1000", 2147483647, 3, 2, 1000},
    {SHOULD_PASS, "2147483647,2147483647,2147483647,2147483647", 2147483647,
     2147483647, 2147483647, 2147483647},
    {SHOULD_PASS, "-2147483647,3,2,1000", -2147483647, 3, 2, 1000},
    {SHOULD_FAIL, "2147483648,3,2,1000", 1, 3, 2, 1000},
    {0, nullptr, 0, 0, 0, 0}};

void DoAttrValueTest() {
  int idx = -1;
  bool didFail = false;
  while (Data[++idx].margins) {
    nsAutoString str;
    str.AssignLiteral(Data[idx].margins);
    nsIntMargin values(99, 99, 99, 99);
    bool result = nsContentUtils::ParseIntMarginValue(str, values);

    // if the parse fails
    if (!result) {
      if (Data[idx].shouldfail) continue;
      fail(Data[idx].margins);
      didFail = true;
      printf("*1\n");
      continue;
    }

    if (Data[idx].shouldfail) {
      if (Data[idx].top == values.top && Data[idx].right == values.right &&
          Data[idx].bottom == values.bottom && Data[idx].left == values.left) {
        // not likely
        fail(Data[idx].margins);
        didFail = true;
        printf("*2\n");
        continue;
      }
      // good failure, parse failed and that's what we expected.
      continue;
    }
#if 0
    printf("%d==%d %d==%d %d==%d %d==%d\n",
      Data[idx].top, values.top,
      Data[idx].right, values.right,
      Data[idx].bottom, values.bottom,
      Data[idx].left, values.left);
#endif
    if (Data[idx].top == values.top && Data[idx].right == values.right &&
        Data[idx].bottom == values.bottom && Data[idx].left == values.left) {
      // good parse results
      continue;
    } else {
      fail(Data[idx].margins);
      didFail = true;
      printf("*3\n");
      continue;
    }
  }

  if (!didFail) passed("nsAttrValue margin parsing tests passed.");
}

int main(int argc, char** argv) {
  ScopedXPCOM xpcom("");
  if (xpcom.failed()) return 1;
  DoAttrValueTest();
  return 0;
}