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.
282 lines
12 KiB
JavaScript
282 lines
12 KiB
JavaScript
import { Color } from "../../Source/Cesium.js";
|
|
import { DistanceDisplayCondition } from "../../Source/Cesium.js";
|
|
import { ColorMaterialProperty } from "../../Source/Cesium.js";
|
|
import { ConstantProperty } from "../../Source/Cesium.js";
|
|
import { EllipseGraphics } 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/EllipseGraphics", function () {
|
|
it("creates expected instance from raw assignment and construction", function () {
|
|
var options = {
|
|
material: Color.BLUE,
|
|
show: true,
|
|
semiMinorAxis: 1,
|
|
semiMajorAxis: 2,
|
|
height: 3,
|
|
extrudedHeight: 4,
|
|
granularity: 5,
|
|
rotation: 6,
|
|
stRotation: 7,
|
|
numberOfVerticalLines: 8,
|
|
fill: false,
|
|
outline: false,
|
|
outlineColor: Color.RED,
|
|
outlineWidth: 9,
|
|
shadows: ShadowMode.DISABLED,
|
|
distanceDisplayCondition: new DistanceDisplayCondition(),
|
|
classificationType: ClassificationType.TERRAIN,
|
|
zIndex: 3,
|
|
};
|
|
|
|
var ellipse = new EllipseGraphics(options);
|
|
expect(ellipse.material).toBeInstanceOf(ColorMaterialProperty);
|
|
expect(ellipse.show).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.semiMinorAxis).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.semiMajorAxis).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.height).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.extrudedHeight).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.granularity).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.rotation).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.stRotation).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.numberOfVerticalLines).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.fill).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.outline).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.outlineColor).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.outlineWidth).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.shadows).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.distanceDisplayCondition).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.classificationType).toBeInstanceOf(ConstantProperty);
|
|
expect(ellipse.zIndex).toBeInstanceOf(ConstantProperty);
|
|
|
|
expect(ellipse.material.color.getValue()).toEqual(options.material);
|
|
expect(ellipse.show.getValue()).toEqual(options.show);
|
|
expect(ellipse.semiMinorAxis.getValue()).toEqual(options.semiMinorAxis);
|
|
expect(ellipse.semiMajorAxis.getValue()).toEqual(options.semiMajorAxis);
|
|
expect(ellipse.height.getValue()).toEqual(options.height);
|
|
expect(ellipse.extrudedHeight.getValue()).toEqual(options.extrudedHeight);
|
|
expect(ellipse.granularity.getValue()).toEqual(options.granularity);
|
|
expect(ellipse.rotation.getValue()).toEqual(options.rotation);
|
|
expect(ellipse.stRotation.getValue()).toEqual(options.stRotation);
|
|
expect(ellipse.numberOfVerticalLines.getValue()).toEqual(
|
|
options.numberOfVerticalLines
|
|
);
|
|
expect(ellipse.fill.getValue()).toEqual(options.fill);
|
|
expect(ellipse.outline.getValue()).toEqual(options.outline);
|
|
expect(ellipse.outlineColor.getValue()).toEqual(options.outlineColor);
|
|
expect(ellipse.outlineWidth.getValue()).toEqual(options.outlineWidth);
|
|
expect(ellipse.shadows.getValue()).toEqual(options.shadows);
|
|
expect(ellipse.distanceDisplayCondition.getValue()).toEqual(
|
|
options.distanceDisplayCondition
|
|
);
|
|
expect(ellipse.classificationType.getValue()).toEqual(
|
|
options.classificationType
|
|
);
|
|
expect(ellipse.zIndex.getValue()).toEqual(options.zIndex);
|
|
});
|
|
|
|
it("merge assigns unassigned properties", function () {
|
|
var source = new EllipseGraphics();
|
|
source.material = new ColorMaterialProperty();
|
|
source.semiMinorAxis = new ConstantProperty();
|
|
source.semiMajorAxis = new ConstantProperty();
|
|
source.show = new ConstantProperty();
|
|
source.height = new ConstantProperty();
|
|
source.extrudedHeight = new ConstantProperty();
|
|
source.granularity = new ConstantProperty();
|
|
source.rotation = new ConstantProperty();
|
|
source.stRotation = new ConstantProperty();
|
|
source.fill = new ConstantProperty();
|
|
source.outline = new ConstantProperty();
|
|
source.outlineColor = new ConstantProperty();
|
|
source.outlineWidth = new ConstantProperty();
|
|
source.numberOfVerticalLines = new ConstantProperty();
|
|
source.shadows = new ConstantProperty(ShadowMode.ENABLED);
|
|
source.distanceDisplayCondition = new ConstantProperty(
|
|
new DistanceDisplayCondition(10.0, 100.0)
|
|
);
|
|
source.classificationType = new ConstantProperty(
|
|
ClassificationType.TERRAIN
|
|
);
|
|
source.zIndex = new ConstantProperty(3);
|
|
|
|
var target = new EllipseGraphics();
|
|
target.merge(source);
|
|
|
|
expect(target.material).toBe(source.material);
|
|
expect(target.semiMinorAxis).toBe(source.semiMinorAxis);
|
|
expect(target.semiMajorAxis).toBe(source.semiMajorAxis);
|
|
expect(target.show).toBe(source.show);
|
|
expect(target.height).toBe(source.height);
|
|
expect(target.extrudedHeight).toBe(source.extrudedHeight);
|
|
expect(target.granularity).toBe(source.granularity);
|
|
expect(target.rotation).toBe(source.rotation);
|
|
expect(target.stRotation).toBe(source.stRotation);
|
|
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.numberOfVerticalLines).toBe(source.numberOfVerticalLines);
|
|
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 EllipseGraphics();
|
|
|
|
var material = new ColorMaterialProperty();
|
|
var semiMajorAxis = new ConstantProperty();
|
|
var semiMinorAxis = new ConstantProperty();
|
|
var show = new ConstantProperty();
|
|
var height = new ConstantProperty();
|
|
var extrudedHeight = new ConstantProperty();
|
|
var granularity = new ConstantProperty();
|
|
var rotation = new ConstantProperty();
|
|
var stRotation = new ConstantProperty();
|
|
var fill = new ConstantProperty();
|
|
var outline = new ConstantProperty();
|
|
var outlineColor = new ConstantProperty();
|
|
var outlineWidth = new ConstantProperty();
|
|
var numberOfVerticalLines = new ConstantProperty();
|
|
var shadows = new ConstantProperty();
|
|
var distanceDisplayCondition = new ConstantProperty();
|
|
var classificationType = new ConstantProperty();
|
|
var zIndex = new ConstantProperty();
|
|
|
|
var target = new EllipseGraphics();
|
|
target.material = material;
|
|
target.semiMinorAxis = semiMinorAxis;
|
|
target.semiMajorAxis = semiMajorAxis;
|
|
target.show = show;
|
|
target.height = height;
|
|
target.extrudedHeight = extrudedHeight;
|
|
target.granularity = granularity;
|
|
target.rotation = rotation;
|
|
target.stRotation = stRotation;
|
|
target.fill = fill;
|
|
target.outline = outline;
|
|
target.outlineColor = outlineColor;
|
|
target.outlineWidth = outlineWidth;
|
|
target.numberOfVerticalLines = numberOfVerticalLines;
|
|
target.shadows = shadows;
|
|
target.distanceDisplayCondition = distanceDisplayCondition;
|
|
target.classificationType = classificationType;
|
|
target.zIndex = zIndex;
|
|
|
|
target.merge(source);
|
|
|
|
expect(target.material).toBe(material);
|
|
expect(target.semiMinorAxis).toBe(semiMinorAxis);
|
|
expect(target.semiMajorAxis).toBe(semiMajorAxis);
|
|
expect(target.show).toBe(show);
|
|
expect(target.height).toBe(height);
|
|
expect(target.extrudedHeight).toBe(extrudedHeight);
|
|
expect(target.granularity).toBe(granularity);
|
|
expect(target.rotation).toBe(rotation);
|
|
expect(target.stRotation).toBe(stRotation);
|
|
expect(target.fill).toBe(fill);
|
|
expect(target.outline).toBe(outline);
|
|
expect(target.outlineColor).toBe(outlineColor);
|
|
expect(target.outlineWidth).toBe(outlineWidth);
|
|
expect(target.numberOfVerticalLines).toBe(numberOfVerticalLines);
|
|
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 EllipseGraphics();
|
|
source.material = new ColorMaterialProperty();
|
|
source.semiMinorAxis = new ConstantProperty();
|
|
source.semiMajorAxis = new ConstantProperty();
|
|
source.show = new ConstantProperty();
|
|
source.height = new ConstantProperty();
|
|
source.extrudedHeight = new ConstantProperty();
|
|
source.granularity = new ConstantProperty();
|
|
source.rotation = new ConstantProperty();
|
|
source.stRotation = new ConstantProperty();
|
|
source.fill = new ConstantProperty();
|
|
source.outline = new ConstantProperty();
|
|
source.outlineColor = new ConstantProperty();
|
|
source.outlineWidth = new ConstantProperty();
|
|
source.numberOfVerticalLines = 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.semiMinorAxis).toBe(source.semiMinorAxis);
|
|
expect(result.semiMajorAxis).toBe(source.semiMajorAxis);
|
|
expect(result.show).toBe(source.show);
|
|
expect(result.height).toBe(source.height);
|
|
expect(result.extrudedHeight).toBe(source.extrudedHeight);
|
|
expect(result.granularity).toBe(source.granularity);
|
|
expect(result.rotation).toBe(source.rotation);
|
|
expect(result.stRotation).toBe(source.stRotation);
|
|
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.numberOfVerticalLines).toBe(source.numberOfVerticalLines);
|
|
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 EllipseGraphics();
|
|
expect(function () {
|
|
target.merge(undefined);
|
|
}).toThrowDeveloperError();
|
|
});
|
|
|
|
it("raises definitionChanged when a property is assigned or modified", function () {
|
|
var property = new EllipseGraphics();
|
|
testMaterialDefinitionChanged(property, "material", Color.RED, Color.BLUE);
|
|
testDefinitionChanged(property, "semiMinorAxis", 2, 3);
|
|
testDefinitionChanged(property, "semiMajorAxis", 3, 4);
|
|
testDefinitionChanged(property, "show", true, false);
|
|
testDefinitionChanged(property, "height", 3, 4);
|
|
testDefinitionChanged(property, "extrudedHeight", 4, 3);
|
|
testDefinitionChanged(property, "granularity", 1, 2);
|
|
testDefinitionChanged(property, "rotation", 5, 6);
|
|
testDefinitionChanged(property, "stRotation", 5, 6);
|
|
testDefinitionChanged(property, "fill", false, true);
|
|
testDefinitionChanged(property, "outline", true, false);
|
|
testDefinitionChanged(property, "outlineColor", Color.RED, Color.BLUE);
|
|
testDefinitionChanged(property, "outlineWidth", 2, 3);
|
|
testDefinitionChanged(property, "numberOfVerticalLines", 16, 32);
|
|
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", 4, 0);
|
|
});
|
|
});
|