You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

260 lines
11 KiB
JavaScript

import { Color } from "../../Source/Cesium.js";
import { DistanceDisplayCondition } from "../../Source/Cesium.js";
import { Rectangle } from "../../Source/Cesium.js";
import { ColorMaterialProperty } from "../../Source/Cesium.js";
import { ConstantProperty } from "../../Source/Cesium.js";
import { RectangleGraphics } from "../../Source/Cesium.js";
import { ClassificationType } from "../../Source/Cesium.js";
import { ShadowMode } from "../../Source/Cesium.js";
import testDefinitionChanged from "../testDefinitionChanged.js";
import testMaterialDefinitionChanged from "../testMaterialDefinitionChanged.js";
describe("DataSources/RectangleGraphics", function () {
it("creates expected instance from raw assignment and construction", function () {
var options = {
material: Color.BLUE,
show: true,
coordinates: new Rectangle(0.1, 0.2, 0.3, 0.4),
height: 5,
extrudedHeight: 6,
granularity: 7,
rotation: 8,
stRotation: 9,
fill: false,
outline: false,
outlineColor: Color.RED,
outlineWidth: 10,
shadows: ShadowMode.DISABLED,
distanceDisplayCondition: new DistanceDisplayCondition(),
classificationType: ClassificationType.TERRAIN,
zIndex: 5,
};
var rectangle = new RectangleGraphics(options);
expect(rectangle.material).toBeInstanceOf(ColorMaterialProperty);
expect(rectangle.show).toBeInstanceOf(ConstantProperty);
expect(rectangle.coordinates).toBeInstanceOf(ConstantProperty);
expect(rectangle.height).toBeInstanceOf(ConstantProperty);
expect(rectangle.extrudedHeight).toBeInstanceOf(ConstantProperty);
expect(rectangle.granularity).toBeInstanceOf(ConstantProperty);
expect(rectangle.rotation).toBeInstanceOf(ConstantProperty);
expect(rectangle.stRotation).toBeInstanceOf(ConstantProperty);
expect(rectangle.fill).toBeInstanceOf(ConstantProperty);
expect(rectangle.outline).toBeInstanceOf(ConstantProperty);
expect(rectangle.outlineColor).toBeInstanceOf(ConstantProperty);
expect(rectangle.outlineWidth).toBeInstanceOf(ConstantProperty);
expect(rectangle.shadows).toBeInstanceOf(ConstantProperty);
expect(rectangle.distanceDisplayCondition).toBeInstanceOf(ConstantProperty);
expect(rectangle.classificationType).toBeInstanceOf(ConstantProperty);
expect(rectangle.zIndex).toBeInstanceOf(ConstantProperty);
expect(rectangle.material.color.getValue()).toEqual(options.material);
expect(rectangle.show.getValue()).toEqual(options.show);
expect(rectangle.coordinates.getValue()).toEqual(options.coordinates);
expect(rectangle.height.getValue()).toEqual(options.height);
expect(rectangle.extrudedHeight.getValue()).toEqual(options.extrudedHeight);
expect(rectangle.granularity.getValue()).toEqual(options.granularity);
expect(rectangle.rotation.getValue()).toEqual(options.rotation);
expect(rectangle.stRotation.getValue()).toEqual(options.stRotation);
expect(rectangle.fill.getValue()).toEqual(options.fill);
expect(rectangle.outline.getValue()).toEqual(options.outline);
expect(rectangle.outlineColor.getValue()).toEqual(options.outlineColor);
expect(rectangle.outlineWidth.getValue()).toEqual(options.outlineWidth);
expect(rectangle.shadows.getValue()).toEqual(options.shadows);
expect(rectangle.distanceDisplayCondition.getValue()).toEqual(
options.distanceDisplayCondition
);
expect(rectangle.classificationType.getValue()).toEqual(
options.classificationType
);
expect(rectangle.zIndex.getValue()).toEqual(options.zIndex);
});
it("merge assigns unassigned properties", function () {
var source = new RectangleGraphics();
source.material = new ColorMaterialProperty();
source.show = new ConstantProperty();
source.coordinates = new ConstantProperty();
source.height = new ConstantProperty();
source.extrudedHeight = new ConstantProperty();
source.granularity = new ConstantProperty();
source.stRotation = new ConstantProperty();
source.rotation = new ConstantProperty();
source.fill = new ConstantProperty();
source.outline = new ConstantProperty();
source.outlineColor = new ConstantProperty();
source.outlineWidth = new ConstantProperty();
source.shadows = new ConstantProperty(ShadowMode.ENABLED);
source.distanceDisplayCondition = new ConstantProperty();
source.classificationType = new ConstantProperty();
source.zIndex = new ConstantProperty();
var target = new RectangleGraphics();
target.merge(source);
expect(target.material).toBe(source.material);
expect(target.show).toBe(source.show);
expect(target.coordinates).toBe(source.coordinates);
expect(target.height).toBe(source.height);
expect(target.extrudedHeight).toBe(source.extrudedHeight);
expect(target.granularity).toBe(source.granularity);
expect(target.stRotation).toBe(source.stRotation);
expect(target.rotation).toBe(source.rotation);
expect(target.fill).toBe(source.fill);
expect(target.outline).toBe(source.outline);
expect(target.outlineColor).toBe(source.outlineColor);
expect(target.outlineWidth).toBe(source.outlineWidth);
expect(target.shadows).toBe(source.shadows);
expect(target.distanceDisplayCondition).toBe(
source.distanceDisplayCondition
);
expect(target.classificationType).toBe(source.classificationType);
expect(target.zIndex).toBe(source.zIndex);
});
it("merge does not assign assigned properties", function () {
var source = new RectangleGraphics();
var material = new ColorMaterialProperty();
var show = new ConstantProperty();
var coordinates = new ConstantProperty();
var height = new ConstantProperty();
var extrudedHeight = new ConstantProperty();
var granularity = new ConstantProperty();
var stRotation = new ConstantProperty();
var rotation = new ConstantProperty();
var fill = new ConstantProperty();
var outline = new ConstantProperty();
var outlineColor = new ConstantProperty();
var outlineWidth = new ConstantProperty();
var shadows = new ConstantProperty();
var distanceDisplayCondition = new ConstantProperty();
var classificationType = new ConstantProperty();
var zIndex = new ConstantProperty();
var target = new RectangleGraphics();
target.material = material;
target.show = show;
target.coordinates = coordinates;
target.height = height;
target.extrudedHeight = extrudedHeight;
target.granularity = granularity;
target.stRotation = stRotation;
target.rotation = rotation;
target.fill = fill;
target.outline = outline;
target.outlineColor = outlineColor;
target.outlineWidth = outlineWidth;
target.shadows = shadows;
target.distanceDisplayCondition = distanceDisplayCondition;
target.classificationType = classificationType;
target.zIndex = zIndex;
target.merge(source);
expect(target.material).toBe(material);
expect(target.show).toBe(show);
expect(target.coordinates).toBe(coordinates);
expect(target.height).toBe(height);
expect(target.extrudedHeight).toBe(extrudedHeight);
expect(target.granularity).toBe(granularity);
expect(target.stRotation).toBe(stRotation);
expect(target.rotation).toBe(rotation);
expect(target.fill).toBe(fill);
expect(target.outline).toBe(outline);
expect(target.outlineColor).toBe(outlineColor);
expect(target.outlineWidth).toBe(outlineWidth);
expect(target.shadows).toBe(shadows);
expect(target.distanceDisplayCondition).toBe(distanceDisplayCondition);
expect(target.classificationType).toBe(classificationType);
expect(target.zIndex).toBe(zIndex);
});
it("clone works", function () {
var source = new RectangleGraphics();
source.material = new ColorMaterialProperty();
source.show = new ConstantProperty();
source.coordinates = new ConstantProperty();
source.height = new ConstantProperty();
source.extrudedHeight = new ConstantProperty();
source.granularity = new ConstantProperty();
source.stRotation = new ConstantProperty();
source.rotation = new ConstantProperty();
source.fill = new ConstantProperty();
source.outline = new ConstantProperty();
source.outlineColor = new ConstantProperty();
source.outlineWidth = new ConstantProperty();
source.shadows = new ConstantProperty();
source.distanceDisplayCondition = new ConstantProperty();
source.classificationType = new ConstantProperty();
source.zIndex = new ConstantProperty();
var result = source.clone();
expect(result.material).toBe(source.material);
expect(result.show).toBe(source.show);
expect(result.coordinates).toBe(source.coordinates);
expect(result.height).toBe(source.height);
expect(result.extrudedHeight).toBe(source.extrudedHeight);
expect(result.granularity).toBe(source.granularity);
expect(result.stRotation).toBe(source.stRotation);
expect(result.rotation).toBe(source.rotation);
expect(result.fill).toBe(source.fill);
expect(result.outline).toBe(source.outline);
expect(result.outlineColor).toBe(source.outlineColor);
expect(result.outlineWidth).toBe(source.outlineWidth);
expect(result.shadows).toBe(source.shadows);
expect(result.distanceDisplayCondition).toBe(
source.distanceDisplayCondition
);
expect(result.classificationType).toBe(source.classificationType);
expect(result.zIndex).toBe(source.zIndex);
});
it("merge throws if source undefined", function () {
var target = new RectangleGraphics();
expect(function () {
target.merge(undefined);
}).toThrowDeveloperError();
});
it("raises definitionChanged when a property is assigned or modified", function () {
var property = new RectangleGraphics();
testMaterialDefinitionChanged(property, "material", Color.RED, Color.BLUE);
testDefinitionChanged(property, "show", true, false);
testDefinitionChanged(
property,
"coordinates",
new Rectangle(0, 0, 0.1, 0.1),
new Rectangle(0, 0, 1, 1)
);
testDefinitionChanged(property, "height", 2, 5);
testDefinitionChanged(property, "extrudedHeight", 3, 4);
testDefinitionChanged(property, "granularity", 3, 4);
testDefinitionChanged(property, "stRotation", 3, 4);
testDefinitionChanged(property, "rotation", 3, 4);
testDefinitionChanged(property, "fill", false, true);
testDefinitionChanged(property, "outline", true, false);
testDefinitionChanged(property, "outlineColor", Color.RED, Color.BLUE);
testDefinitionChanged(property, "outlineWidth", 2, 3);
testDefinitionChanged(
property,
"shadows",
ShadowMode.ENABLED,
ShadowMode.DISABLED
);
testDefinitionChanged(
property,
"distanceDisplayCondition",
new DistanceDisplayCondition(),
new DistanceDisplayCondition(10.0, 100.0)
);
testDefinitionChanged(
property,
"classificationType",
ClassificationType.TERRAIN,
ClassificationType.BOTH
);
testDefinitionChanged(property, "zIndex", 20, 5);
});
});