forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass_resilience.swift
252 lines (189 loc) · 6.54 KB
/
class_resilience.swift
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// RUN: rm -rf %t && mkdir -p %t
// RUN: %target-build-swift -emit-library -Xfrontend -enable-resilience -c %S/../Inputs/resilient_struct.swift -o %t/resilient_struct.o
// RUN: %target-build-swift -emit-module -Xfrontend -enable-resilience -c %S/../Inputs/resilient_struct.swift -o %t/resilient_struct.o
// RUN: %target-build-swift -emit-library -Xfrontend -enable-resilience -c %S/../Inputs/resilient_class.swift -I %t/ -o %t/resilient_class.o
// RUN: %target-build-swift -emit-module -Xfrontend -enable-resilience -c %S/../Inputs/resilient_class.swift -I %t/ -o %t/resilient_class.o
// RUN: %target-build-swift %s -Xlinker %t/resilient_struct.o -Xlinker %t/resilient_class.o -I %t -L %t -o %t/main
// RUN: %target-run %t/main
// REQUIRES: executable_test
import StdlibUnittest
import resilient_class
import resilient_struct
var ResilientClassTestSuite = TestSuite("ResilientClass")
// Concrete class with resilient stored property
protocol ProtocolWithResilientProperty {
var s: Size { get }
}
public class ClassWithResilientProperty : ProtocolWithResilientProperty {
public let p: Point
public let s: Size
public let color: Int32
public init(p: Point, s: Size, color: Int32) {
self.p = p
self.s = s
self.color = color
}
}
@inline(never) func getS(_ p: ProtocolWithResilientProperty) -> Size {
return p.s
}
ResilientClassTestSuite.test("ClassWithResilientProperty") {
let c = ClassWithResilientProperty(
p: Point(x: 10, y: 20),
s: Size(w: 30, h: 40),
color: 50)
expectEqual(c.p.x, 10)
expectEqual(c.p.y, 20)
expectEqual(c.s.w, 30)
expectEqual(c.s.h, 40)
expectEqual(c.color, 50)
// Make sure the conformance works
expectEqual(getS(c).w, 30)
expectEqual(getS(c).h, 40)
}
// Generic class with resilient stored property
public class GenericClassWithResilientProperty<T> {
public let s1: Size
public let t: T
public let s2: Size
public init(s1: Size, t: T, s2: Size) {
self.s1 = s1
self.t = t
self.s2 = s2
}
}
ResilientClassTestSuite.test("GenericClassWithResilientProperty") {
let c = GenericClassWithResilientProperty<Int32>(
s1: Size(w: 10, h: 20),
t: 30,
s2: Size(w: 40, h: 50))
expectEqual(c.s1.w, 10)
expectEqual(c.s1.h, 20)
expectEqual(c.t, 30)
expectEqual(c.s2.w, 40)
expectEqual(c.s2.h, 50)
}
// Concrete class with non-fixed size stored property
public class ClassWithResilientlySizedProperty {
public let r: Rectangle
public let color: Int32
public init(r: Rectangle, color: Int32) {
self.r = r
self.color = color
}
}
ResilientClassTestSuite.test("ClassWithResilientlySizedProperty") {
let c = ClassWithResilientlySizedProperty(
r: Rectangle(
p: Point(x: 10, y: 20),
s: Size(w: 30, h: 40),
color: 50),
color: 60)
expectEqual(c.r.p.x, 10)
expectEqual(c.r.p.y, 20)
expectEqual(c.r.s.w, 30)
expectEqual(c.r.s.h, 40)
expectEqual(c.r.color, 50)
expectEqual(c.color, 60)
}
// Concrete subclass of fixed-layout class with resilient stored property
public class ChildOfParentWithResilientStoredProperty : ClassWithResilientProperty {
let enabled: Int32
public init(p: Point, s: Size, color: Int32, enabled: Int32) {
self.enabled = enabled
super.init(p: p, s: s, color: color)
}
}
ResilientClassTestSuite.test("ChildOfParentWithResilientStoredProperty") {
let c = ChildOfParentWithResilientStoredProperty(
p: Point(x: 10, y: 20),
s: Size(w: 30, h: 40),
color: 50,
enabled: 60)
expectEqual(c.p.x, 10)
expectEqual(c.p.y, 20)
expectEqual(c.s.w, 30)
expectEqual(c.s.h, 40)
expectEqual(c.color, 50)
expectEqual(c.enabled, 60)
}
// Concrete subclass of fixed-layout class with resilient stored property
public class ChildOfOutsideParentWithResilientStoredProperty : OutsideParentWithResilientProperty {
let enabled: Int32
public init(p: Point, s: Size, color: Int32, enabled: Int32) {
self.enabled = enabled
super.init(p: p, s: s, color: color)
}
}
ResilientClassTestSuite.test("ChildOfOutsideParentWithResilientStoredProperty") {
let c = ChildOfOutsideParentWithResilientStoredProperty(
p: Point(x: 10, y: 20),
s: Size(w: 30, h: 40),
color: 50,
enabled: 60)
expectEqual(c.p.x, 10)
expectEqual(c.p.y, 20)
expectEqual(c.s.w, 30)
expectEqual(c.s.h, 40)
expectEqual(c.color, 50)
expectEqual(c.enabled, 60)
}
// Resilient class from a different resilience domain
ResilientClassTestSuite.test("ResilientOutsideParent") {
let c = ResilientOutsideParent()
expectEqual(c.property, "ResilientOutsideParent.property")
expectEqual(c.finalProperty, "ResilientOutsideParent.finalProperty")
}
// FIXME: needs indirect metadata access
#if false
// Concrete subclass of resilient class
public class ChildOfResilientOutsideParent : ResilientOutsideParent {
let enabled: Int32
public init(enabled: Int32) {
self.enabled = enabled
super.init()
}
}
ResilientClassTestSuite.test("ChildOfResilientOutsideParent") {
let c = ChildOfResilientOutsideParent(enabled: 60)
expectEqual(c.property, "ResilientOutsideParent.property")
expectEqual(c.finalProperty, "ResilientOutsideParent.finalProperty")
expectEqual(c.enabled, 60)
}
// Concrete subclass of resilient class
public class ChildOfResilientOutsideParentWithResilientStoredProperty : ResilientOutsideParent {
public let p: Point
public let s: Size
public let color: Int32
public init(p: Point, s: Size, color: Int32) {
self.p = p
self.s = s
self.color = color
super.init()
}
}
ResilientClassTestSuite.test("ChildOfResilientOutsideParentWithResilientStoredProperty") {
let c = ChildOfResilientOutsideParentWithResilientStoredProperty(
p: Point(x: 10, y: 20),
s: Size(w: 30, h: 40),
color: 50)
expectEqual(c.property, "ResilientOutsideParent.property")
expectEqual(c.finalProperty, "ResilientOutsideParent.finalProperty")
expectEqual(c.p.x, 10)
expectEqual(c.p.y, 20)
expectEqual(c.s.w, 30)
expectEqual(c.s.h, 40)
expectEqual(c.color, 50)
}
#endif
ResilientClassTestSuite.test("TypeByName") {
expectTrue(_typeByName("main.ClassWithResilientProperty")
== ClassWithResilientProperty.self)
expectTrue(_typeByName("main.ClassWithResilientlySizedProperty")
== ClassWithResilientlySizedProperty.self)
expectTrue(_typeByName("main.ChildOfParentWithResilientStoredProperty")
== ChildOfParentWithResilientStoredProperty.self)
expectTrue(_typeByName("main.ChildOfOutsideParentWithResilientStoredProperty")
== ChildOfOutsideParentWithResilientStoredProperty.self)
}
runAllTests()