File: safeheldtype_packet.test

package info (click to toggle)
regina-normal 7.4.1-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 154,244 kB
  • sloc: cpp: 295,026; xml: 9,992; sh: 1,344; python: 1,225; perl: 616; ansic: 138; makefile: 26
file content (179 lines) | stat: -rw-r--r-- 3,924 bytes parent folder | download
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
# Regina - A Normal Surface Theory Calculator
# Python Test Suite Component
#
# Copyright (c) 2015-2025, Ben Burton
# For further details contact Ben Burton (bab@debian.org).
#
# Provides tests for the wrapping of Packet subclasses through shared_ptr
#
# This file is a single component of Regina's python test suite.  To run
# the python test suite, move to the main python directory in the source
# tree and run "make check".
#
# 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.
#
# As an exception, when this program is distributed through (i) the
# App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
# (iii) Google Play by Google Inc., then that store may impose any
# digital rights management, device limits and/or redistribution
# restrictions that are required by its terms of service.
#
# 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, see <https://www.gnu.org/licenses/>.

# NOTE: Since Regina 5.96, python references to packets never expire.
# Therefore we should never raise any exceptions in this test.

print()
print("-----------------------------------------------------------")
print("Basic:")
print()

print(PacketOfTriangulation3(Example3.poincare()).isoSig())
print(Text("Hello World"))
print(Text("Hello World").text())

print()
print("-----------------------------------------------------------")
print("Basic container tests:")
print()

t1 = PacketOfTriangulation3()
t2 = PacketOfTriangulation3(Example3.poincare())
t3 = PacketOfTriangulation3(Example3.figureEight())
p = Attachment()

t = Text()

c = Container()
c.prepend(t1)

print(c.countChildren())

print(t1.isoSig())
dummy = t1.newTetrahedron()
dummy = None

print(c.firstChild())
print(c.firstChild().isoSig())

t1 = None

print(c.firstChild().isoSig())

temp = c.lastChild()

dummy = temp.newTetrahedron()
dummy = None

print(temp.isoSig())

print()
print("-----------------------------------------------------------")
print("Erasing container:")
print()

c = None

try:
    print(temp.isoSig())
except RuntimeError:
    print("Got exception")

print()
print("-----------------------------------------------------------")
print("Nested tests:")
print()

t2.prepend(t3)
t2.prepend(p)
p.append(t)
t.setText("Hello World")

print(t.text())

p.lastChild().setText("Text set")

l = p.firstChild()

print(l.text())

t2.insert(Text("New"), t3)

print(t2.countChildren())
print(t2.countDescendants())

m = l.root()

print(m == t2)

print(m.isoSig())

m = None

print(p.isNull())

print(p.totalTreeSize())

it = t2

while it:
    print(it)
    it = it.nextTreePacket()

t2 = None

print()
print("Erase nested:")
print("-----------------------------------------------------------")
print()

try:
    print(l)
except RuntimeError:
    print("Got exception")

try:
    print(t3)
except RuntimeError:
    print("Got exception")

print()
print("Make orphan:")
print("-----------------------------------------------------------")
print()

d1 = Triangulation3(); dummy = d1.newTetrahedron(); dummy = None
d2 = Triangulation3(); dummy = d2.newTetrahedra(2); dummy = None
d3 = Triangulation3(); dummy = d3.newTetrahedra(3); dummy = None
p1 = PacketOfTriangulation3(d1)
p2 = PacketOfTriangulation3(d2)
p3 = PacketOfTriangulation3(d3)
p1.append(p2)
p2.append(p3)

print(p1)
print(p2)
print(p3)

p2.makeOrphan()
print(p1)
print(p2)
print(p3)

try:
    p2 = None
    print(p1)
    print(p2)
    print(p3)
except RuntimeError:
    print("Got exception")