yzt
2023-05-05 4c558c77a6a9d23f057f094c4dc3e315eabef497
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import { JulianDate } from "../../Source/Cesium.js";
import { ConstantProperty } from "../../Source/Cesium.js";
import { PropertyBag } from "../../Source/Cesium.js";
import { SampledProperty } from "../../Source/Cesium.js";
 
describe("DataSources/PropertyBag", function () {
  var time = JulianDate.now();
 
  it("sets correct values when constructed with no arguments", function () {
    var property = new PropertyBag();
    expect(property.isConstant).toBe(true);
    expect(property.getValue(time)).toEqual({});
  });
 
  it("sets correct values when constructed with arguments", function () {
    var property = new PropertyBag({
      a: new ConstantProperty(1),
      b: new ConstantProperty(2),
    });
 
    expect(property.propertyNames).toContain("a");
    expect(property.a).toBeDefined();
    expect(property.a).toBeInstanceOf(ConstantProperty);
    expect(property.hasProperty("a")).toEqual(true);
 
    expect(property.propertyNames).toContain("b");
    expect(property.b).toBeDefined();
    expect(property.b).toBeInstanceOf(ConstantProperty);
    expect(property.hasProperty("b")).toEqual(true);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
      b: 2,
    });
  });
 
  it("works with result parameter", function () {
    var property = new PropertyBag({
      a: new ConstantProperty(1),
      b: new ConstantProperty(2),
    });
 
    var expectedResult = {
      a: -1,
    };
    var result = property.getValue(time, expectedResult);
    expect(result).toEqual({
      a: 1,
      b: 2,
    });
    expect(result).toBe(expectedResult);
  });
 
  it("leaves extra properties in result object in place", function () {
    var property = new PropertyBag({
      a: new ConstantProperty(1),
    });
 
    var expectedResult = {
      q: -1,
    };
    var result = property.getValue(time, expectedResult);
    expect(result).toEqual({
      a: 1,
      q: -1,
    });
    expect(result).toBe(expectedResult);
  });
 
  it("converts raw values to properties when constructed", function () {
    var property = new PropertyBag({
      a: 1,
      b: 2,
    });
 
    expect(property.propertyNames).toContain("a");
    expect(property.a).toBeInstanceOf(ConstantProperty);
 
    expect(property.propertyNames).toContain("b");
    expect(property.b).toBeInstanceOf(ConstantProperty);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
      b: 2,
    });
  });
 
  function FakeProperty(v) {
    this.v = v;
  }
  FakeProperty.prototype.getValue = function () {
    return this.v;
  };
  function createFakeProperty(v) {
    return new FakeProperty(v);
  }
 
  it("uses the provided function to convert raw values to properties when constructed", function () {
    var property = new PropertyBag(
      {
        a: 1,
        b: 2,
      },
      createFakeProperty
    );
 
    expect(property.propertyNames).toContain("a");
    expect(property.a).toBeDefined();
    expect(property.a).toBeInstanceOf(FakeProperty);
 
    expect(property.propertyNames).toContain("b");
    expect(property.b).toBeDefined();
    expect(property.b).toBeInstanceOf(FakeProperty);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
      b: 2,
    });
  });
 
  it("returns correct results from hasProperty", function () {
    var property = new PropertyBag();
    expect(property.hasProperty("a")).toEqual(false);
    property.addProperty("a");
    expect(property.hasProperty("a")).toEqual(true);
  });
 
  it("allows adding a property without a value", function () {
    var property = new PropertyBag();
    property.addProperty("a");
 
    expect(property.propertyNames).toEqual(["a"]);
    expect(property.a).toBeUndefined();
    expect(property.hasProperty("a")).toEqual(true);
 
    expect(property.getValue(time)).toEqual({
      a: undefined,
    });
  });
 
  it("allows adding a property with a value", function () {
    var property = new PropertyBag();
    property.addProperty("a", new ConstantProperty(1));
 
    expect(property.propertyNames).toEqual(["a"]);
    expect(property.a).toBeInstanceOf(ConstantProperty);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
    });
  });
 
  it("uses the provided function to convert raw values to properties when added with a value", function () {
    var property = new PropertyBag();
    property.addProperty("a", 1, createFakeProperty);
 
    expect(property.propertyNames).toEqual(["a"]);
    expect(property.a).toBeInstanceOf(FakeProperty);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
    });
  });
 
  it("uses the provided function to convert raw values to properties when added without a value", function () {
    var property = new PropertyBag();
    property.addProperty("a", undefined, createFakeProperty);
 
    expect(property.propertyNames).toEqual(["a"]);
    expect(property.a).toBeUndefined();
 
    property.a = 1;
    expect(property.a).toBeInstanceOf(FakeProperty);
 
    expect(property.getValue(time)).toEqual({
      a: 1,
    });
  });
 
  it("allows removing a property that was previously added", function () {
    var property = new PropertyBag();
 
    property.addProperty("a", new ConstantProperty(1));
    expect(property.hasProperty("a")).toEqual(true);
 
    property.removeProperty("a");
 
    expect(property.propertyNames).toEqual([]);
    expect(property.a).toBeUndefined();
    expect(property.hasProperty("a")).toEqual(false);
 
    expect(property.getValue(time)).toEqual({});
  });
 
  it("throws when removing a property that was not added", function () {
    var property = new PropertyBag();
    expect(function () {
      property.removeProperty("a");
    }).toThrowDeveloperError();
  });
 
  it("raises definitionChanged event when addProperty is called", function () {
    var property = new PropertyBag();
    var listener = jasmine.createSpy("listener");
    property.definitionChanged.addEventListener(listener);
    property.addProperty("a");
    expect(listener).toHaveBeenCalledWith(property);
  });
 
  it("raises definitionChanged event when properties are changed", function () {
    var property = new PropertyBag();
    property.addProperty("a");
 
    var listener = jasmine.createSpy("listener");
    property.definitionChanged.addEventListener(listener);
 
    var a = new ConstantProperty(1);
    property.a = a;
 
    expect(listener).toHaveBeenCalledWith(property, "a", a, undefined);
  });
 
  it("requires propertyName in addProperty", function () {
    var property = new PropertyBag();
    expect(function () {
      property.addProperty();
    }).toThrowDeveloperError();
  });
 
  it("requires propertyName in removeProperty", function () {
    var property = new PropertyBag();
    expect(function () {
      property.removeProperty();
    }).toThrowDeveloperError();
  });
 
  it("has working equals function", function () {
    var left = new PropertyBag({
      a: new ConstantProperty(1),
    });
    var right = new PropertyBag({
      a: new ConstantProperty(1),
    });
 
    expect(left.equals(right)).toEqual(true);
 
    right.addProperty("c");
    expect(left.equals(right)).toEqual(false);
 
    right = new PropertyBag({
      a: new ConstantProperty(2),
    });
    expect(left.equals(right)).toEqual(false);
 
    right = new PropertyBag({
      b: new ConstantProperty(1),
    });
    expect(left.equals(right)).toEqual(false);
 
    right = new PropertyBag();
    expect(left.equals(right)).toEqual(false);
 
    left = new PropertyBag();
    right = new PropertyBag();
    expect(left.equals(right)).toEqual(true);
  });
 
  it("returns true from isConstant only if all members are constant", function () {
    var property = new PropertyBag();
 
    property.addProperty("a", new ConstantProperty(2));
    expect(property.isConstant).toBe(true);
 
    var sampledProperty = new SampledProperty(Number);
    sampledProperty.addSample(time, 1);
    property.addProperty("b", sampledProperty);
 
    expect(property.isConstant).toBe(false);
  });
});