summaryrefslogtreecommitdiff
path: root/ndb/src/old_files/rep/state/testInterval/testInterval.cpp
blob: 463e4adffb7c212ec44bbf00ed52ea43b00f2baa (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
/* Copyright (C) 2003 MySQL AB

   This program 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 2 of the License, or
   (at your option) any later version.

   This program 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 this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

#include "../Interval.hpp"

#define TEST_REQUIRE(X);  if (!(X)) { \
  ndbout_c("Test failed in line %d", __LINE__); testPassed = false; }


int
main () {
  bool testPassed = true;

  Interval a, b, c;

  /**
   *  isEmpty
   */
  TEST_REQUIRE(a.isEmpty());

  a.set(3,1);
  TEST_REQUIRE(a.isEmpty());

  /**
   *  isEqual
   */
  a.set(1,2);
  TEST_REQUIRE(a.isEqual(1,2));

  a.set(3,1);
  TEST_REQUIRE(a.isEqual(1,0));  // The result should be normalized

  /**
   *  intervalAdd -- non-disjoint 
   */
  a.set(1,3);
  b.set(3,10);
  TEST_REQUIRE(intervalAdd(a, b, &c));
  TEST_REQUIRE(c.isEqual(1,10));

  a.set(3,10);
  b.set(1,3);
  TEST_REQUIRE(intervalAdd(a, b, &c));
  TEST_REQUIRE(c.isEqual(1,10));

  /**
   *  intervalAdd -- consequtive
   */
  a.set(1,3);
  b.set(4,10);
  TEST_REQUIRE(intervalAdd(a, b, &c));
  TEST_REQUIRE(c.isEqual(1,10));

  a.set(4,10);
  b.set(1,3);
  TEST_REQUIRE(intervalAdd(a, b, &c));
  TEST_REQUIRE(c.isEqual(1,10));

  /**
   *  intervalAdd -- disjoint
   */
  a.set(1,3);
  b.set(5,10);
  c.set(4711,4711);
  TEST_REQUIRE(!intervalAdd(a, b, &c));  // This should not work
  TEST_REQUIRE(c.isEqual(4711,4711));

  a.set(5,10);
  b.set(1,3);
  c.set(4711,4711);
  TEST_REQUIRE(!intervalAdd(a, b, &c));  // This should not work
  TEST_REQUIRE(c.isEqual(4711,4711));

  /**
   *  intervalLeftMinus -- non-disjoint
   */
  a.set(1,3);
  b.set(5,10);
  intervalLeftMinus(a, b, &c);          
  TEST_REQUIRE(c.isEmpty());

  a.set(5,10);
  b.set(1,3);
  intervalLeftMinus(a, b, &c);          
  TEST_REQUIRE(c.isEqual(5,10));

  /**
   *  intervalLeftMinus -- consequtive
   */
  a.set(1,3);
  b.set(4,10);
  intervalLeftMinus(a, b, &c);
  TEST_REQUIRE(c.isEmpty());

  a.set(4,10);
  b.set(1,3);
  intervalLeftMinus(a, b, &c);
  TEST_REQUIRE(c.isEqual(4,10));

  /**
   *  intervalLeftMinus -- disjoint
   */
  a.set(1,3);
  b.set(5,10);
  intervalLeftMinus(a, b, &c);
  TEST_REQUIRE(c.isEmpty());

  a.set(5,10);
  b.set(1,3);
  intervalLeftMinus(a, b, &c);
  TEST_REQUIRE(c.isEqual(5,10));
  
  ndbout << "Test " << (testPassed ? "passed" : "failed") << "." << endl;
}