Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved test coverage #31

Merged
merged 34 commits into from
May 22, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1ba61e8
Improved test coverage.
kristiancalhoun May 10, 2012
cc2efd2
Improved test coverage.
kristiancalhoun May 11, 2012
61e6e2d
Improved test coverage.
kristiancalhoun May 11, 2012
7bf90fe
Improved test coverage for CompositePrimitive,
kristiancalhoun May 14, 2012
bffa16e
Added extra SunPosition tests.
kristiancalhoun May 14, 2012
5313547
Streamlined UniformDatatype tests.
kristiancalhoun May 14, 2012
87e6ca2
Removed unused TextureAtlas function getContext.
kristiancalhoun May 14, 2012
5e49d54
Replaced all applicable instances of toBeTruhty() with toEqual(true) and
kristiancalhoun May 14, 2012
6bafe3e
Fixed exception tests.
kristiancalhoun May 14, 2012
53bc31d
Improved test coverage for:
kristiancalhoun May 16, 2012
50f89be
Improved Context test coverage.
kristiancalhoun May 16, 2012
9dfd6e0
Added camera viewExtent test.
kristiancalhoun May 16, 2012
723e1b1
Changed an exception in Tipsify that prevented a block of code from r…
kristiancalhoun May 17, 2012
120cbc6
Added camera related tests.
kristiancalhoun May 17, 2012
e8f9b78
Added EventHandler tests for middle press/release
kristiancalhoun May 17, 2012
63b67e0
Added Tile tests to check for exceptions.
kristiancalhoun May 17, 2012
31ca976
Merge branch 'master' into testCoverage
kristiancalhoun May 17, 2012
3267de8
Merge branch 'master' into testCoverage
kristiancalhoun May 17, 2012
f4b41aa
Integrated immutable property changes into new tests and fixed some m…
kristiancalhoun May 17, 2012
ed30586
Updated getZero test name to match new immutable property.
kristiancalhoun May 18, 2012
aa53444
Fixed a typo.
kristiancalhoun May 18, 2012
4bd6c4e
Changes per @pjcozzi's comments.
kristiancalhoun May 21, 2012
d50b19c
Minor changes per @pjcozzi's comments.
kristiancalhoun May 21, 2012
05feefb
Fixed JSHint warning.
kristiancalhoun May 21, 2012
6e6932a
Fixed inequality.
kristiancalhoun May 21, 2012
5eeb49e
Changed the interface for Tipsify.tipsify and Tipsify.calculateACMR.
kristiancalhoun May 21, 2012
1129a25
Updated CHANGES file with breaking Tipsify changes.
kristiancalhoun May 21, 2012
7db4904
Merge branch 'master' into testCoverage
kristiancalhoun May 21, 2012
1f7471f
Removed backup files from merge.
kristiancalhoun May 21, 2012
d818ed3
Fixed JSHint warning in TileSpec.js
kristiancalhoun May 21, 2012
e87533b
Merge branch 'master' into testCoverage
kristiancalhoun May 21, 2012
de30eb5
Fixed botched merge in Texture2DPoolSpec
kristiancalhoun May 21, 2012
f62e9e5
Cleaned up Tipsify.
kristiancalhoun May 22, 2012
09cad22
Added extra tests to Tipsify.
kristiancalhoun May 22, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Beta Releases
### b6 - TBA

* Breaking changes:
* TBA
* Changed Tipsify.tipsify and Tipsify.calculateACMR to accept an object literal instead of three separate arguments. Supplying a maximum index and cache size is now optional.
* TBA

### b5 - 05/15/2012
Expand Down
6 changes: 3 additions & 3 deletions Source/Core/Cartesian3.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,11 @@ define(['./Cartesian2'], function(Cartesian2) {
* Returns the angle, in radians, between this Cartesian and the Cartesian passed in.
*
* @memberof Cartesian3
* @param {Cartesian3} scalar The Cartesian used to compute the angle.
* @param {Cartesian3} cartesian The Cartesian used to compute the angle.
* @return {Number} The angle between the two Cartesians.
*/
Cartesian3.prototype.angleBetween = function(Cartesian) {
var c = Cartesian3.clone(Cartesian);
Cartesian3.prototype.angleBetween = function(cartesian) {
var c = Cartesian3.clone(cartesian);
return Math.acos(this.normalize().dot(c.normalize()));
};

Expand Down
4 changes: 3 additions & 1 deletion Source/Core/MeshFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,9 @@ define([
maximumIndex = indices[j];
}
}
indexLists[i].values = Tipsify.tipsify(indices, maximumIndex, cacheCapacity || 24);
indexLists[i].values = Tipsify.tipsify({indices : indices,
maximumIndex : maximumIndex,
cacheSize : cacheCapacity});
}
}
}
Expand Down
46 changes: 35 additions & 11 deletions Source/Core/Tipsify.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ define(['./DeveloperError'], function(DeveloperError) {
/**
* Calculates the average cache miss ratio (ACMR) for a given set of indices.
*
* @param {Array} indices Lists triads of numbers corresponding to the indices of the vertices
* @param {Array} description.indices Lists triads of numbers corresponding to the indices of the vertices
* in the vertex buffer that define the mesh's triangles.
* @param {Number} maximumIndex The maximum value of the elements in <code>indices</code>.
* @param {Number} cacheSize The number of vertices that can be stored in the cache at any one time.
* @param {Number} [description.maximumIndex] The maximum value of the elements in <code>args.indices</code>.
* If not supplied, this value will be computed.
* @param {Number} [description.cacheSize=24] The number of vertices that can be stored in the cache at any one time.
*
* @exception {DeveloperError} indices is required.
* @exception {DeveloperError} indices length must be a multiple of three.
* @exception {DeveloperError} maximumIndex must be greater than zero.
* @exception {DeveloperError} cacheSize must be greater than two.
*
* @return {Number} The average cache miss ratio (ACMR).
Expand All @@ -37,7 +37,12 @@ define(['./DeveloperError'], function(DeveloperError) {
* var cacheSize = 3;
* var acmr = Tipsify.calculateACMR(indices, maxIndex, cacheSize);
*/
Tipsify.calculateACMR = function(indices, maximumIndex, cacheSize) {
Tipsify.calculateACMR = function(description) {
description = description || {};
var indices = description.indices;
var maximumIndex = description.maximumIndex;
var cacheSize = description.cacheSize || 24;

if (!indices) {
throw new DeveloperError("indices is required.", "indices");
}
Expand All @@ -54,6 +59,20 @@ define(['./DeveloperError'], function(DeveloperError) {
throw new DeveloperError("cacheSize must be greater than two.", "cachSize");
}

// Compute the maximumIndex if not given
if(!maximumIndex) {
maximumIndex = 0;
var currentIndex = 0;
var intoIndices = indices[currentIndex];
while (currentIndex < numIndices) {
if (intoIndices > maximumIndex) {
maximumIndex = intoIndices;
}
++currentIndex;
intoIndices = indices[currentIndex];
}
}

// Vertex time stamps
var vertexTimeStamps = [];
for ( var i = 0; i < maximumIndex + 1; i++) {
Expand All @@ -75,14 +94,14 @@ define(['./DeveloperError'], function(DeveloperError) {
/**
* Optimizes triangles for the post-vertex shader cache.
*
* @param {Array} indices Lists triads of numbers corresponding to the indices of the vertices
* @param {Array} description.indices Lists triads of numbers corresponding to the indices of the vertices
* in the vertex buffer that define the mesh's triangles.
* @param {Number} maximumIndex The maximum value of the elements in <code>indices</code>.
* @param {Number} cacheSize The number of vertices that can be stored in the cache at any one time.
* @param {Number} [description.maximumIndex] The maximum value of the elements in <code>args.indices</code>.
* If not supplied, this value will be computed.
* @param {Number} [description.cacheSize=24] The number of vertices that can be stored in the cache at any one time.
*
* @exception {DeveloperError} indices is required.
* @exception {DeveloperError} indices length must be a multiple of three.
* @exception {DeveloperError} maximumIndex must be greater than zero.
* @exception {DeveloperError} cacheSize must be greater than two.
*
* @return {Array} A list of the input indices in an optimized order.
Expand All @@ -93,7 +112,12 @@ define(['./DeveloperError'], function(DeveloperError) {
* var cacheSize = 3;
* var reorderedIndices = Tipsify.tipsify(indices, maxIndex, cacheSize);
*/
Tipsify.tipsify = function(indices, maximumIndex, cacheSize) {
Tipsify.tipsify = function(description) {
description = description || {};
var indices = description.indices;
var maximumIndex = description.maximumIndex;
var cacheSize = description.cacheSize || 24;

var cursor;

function skipDeadEnd(vertices, deadEnd, indices, maximumIndexPlusOne) {
Expand Down Expand Up @@ -162,7 +186,7 @@ define(['./DeveloperError'], function(DeveloperError) {
var currentIndex = 0;
var intoIndices = indices[currentIndex];
var endIndex = numIndices;
if (maximumIndex !== -1) {
if (maximumIndex) {
maximumIndexPlusOne = maximumIndex + 1;
} else {
while (currentIndex < endIndex) {
Expand Down
8 changes: 0 additions & 8 deletions Source/Renderer/TextureAtlas.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,6 @@ define([
return numTextureCoordinates;
};

/**
* DOC_TBA
* @memberof TextureAtlas
*/
TextureAtlas.prototype.getContext = function() {
return this._context;
};

/**
* DOC_TBA
* @memberof TextureAtlas
Expand Down
12 changes: 6 additions & 6 deletions Specs/Core/AxisAlignedBoundingBoxSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ defineSuite([

it("computes the minimum", function() {
var box = new AxisAlignedBoundingBox(positions);
expect(box.minimum.equals(new Cartesian3(-3, -3, -3))).toBeTruthy();
expect(box.minimum.equals(new Cartesian3(-3, -3, -3))).toEqual(true);
});

it("computes the maximum", function() {
var box = new AxisAlignedBoundingBox(positions);
expect(box.maximum.equals(new Cartesian3(3, 3, 3))).toBeTruthy();
expect(box.maximum.equals(new Cartesian3(3, 3, 3))).toEqual(true);
});

it("computes a center", function() {
var box = new AxisAlignedBoundingBox(positions);
expect(box.center.equalsEpsilon(Cartesian3.ZERO, Math.EPSILON14)).toBeTruthy();
expect(box.center.equalsEpsilon(Cartesian3.ZERO, Math.EPSILON14)).toEqual(true);
});

it("computes the bounding box for a single position", function() {
Expand All @@ -40,9 +40,9 @@ defineSuite([
z : 3
}]);

expect(box.minimum.equals(new Cartesian3(1, 2, 3))).toBeTruthy();
expect(box.maximum.equals(new Cartesian3(1, 2, 3))).toBeTruthy();
expect(box.center.equals(new Cartesian3(1, 2, 3))).toBeTruthy();
expect(box.minimum.equals(new Cartesian3(1, 2, 3))).toEqual(true);
expect(box.maximum.equals(new Cartesian3(1, 2, 3))).toEqual(true);
expect(box.center.equals(new Cartesian3(1, 2, 3))).toEqual(true);
});

it("has undefined properties with positions of length zero", function() {
Expand Down
12 changes: 6 additions & 6 deletions Specs/Core/AxisAlignedBoundingRectangleSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ defineSuite([

it("computes the minimum", function() {
var rectangle = new AxisAlignedBoundingRectangle(positions);
expect(rectangle.minimum.equals(new Cartesian2(-3, -3))).toBeTruthy();
expect(rectangle.minimum.equals(new Cartesian2(-3, -3))).toEqual(true);
});

it("computes the maximum", function() {
var rectangle = new AxisAlignedBoundingRectangle(positions);
expect(rectangle.maximum.equals(new Cartesian2(3, 3))).toBeTruthy();
expect(rectangle.maximum.equals(new Cartesian2(3, 3))).toEqual(true);
});

it("computes the center", function() {
var rectangle = new AxisAlignedBoundingRectangle(positions);
expect(rectangle.center.equalsEpsilon(Cartesian2.ZERO, Math.EPSILON14)).toBeTruthy();
expect(rectangle.center.equalsEpsilon(Cartesian2.ZERO, Math.EPSILON14)).toEqual(true);
});

it("computes the bounding rectangle for a single position", function() {
Expand All @@ -39,9 +39,9 @@ defineSuite([
y : 2
}]);

expect(rectangle.minimum.equals(new Cartesian2(1, 2))).toBeTruthy();
expect(rectangle.maximum.equals(new Cartesian2(1, 2))).toBeTruthy();
expect(rectangle.center.equals(new Cartesian2(1, 2))).toBeTruthy();
expect(rectangle.minimum.equals(new Cartesian2(1, 2))).toEqual(true);
expect(rectangle.maximum.equals(new Cartesian2(1, 2))).toEqual(true);
expect(rectangle.center.equals(new Cartesian2(1, 2))).toEqual(true);
});

it("has undefined properties with positions of length zero", function() {
Expand Down
16 changes: 8 additions & 8 deletions Specs/Core/BoundingSphereSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ defineSuite([

it("can be constructed using a point and a radius", function() {
var sphere = new BoundingSphere(new Cartesian3(0, 0, 0), 1);
expect(sphere.center.equals(Cartesian3.ZERO)).toBeTruthy();
expect(sphere.center.equals(Cartesian3.ZERO)).toEqual(true);
expect(sphere.radius).toEqual(1);
});

it("has a center", function() {
var sphere = new BoundingSphere(getPositions());
var center = sphere.center;
expect(center.equalsEpsilon(Cartesian3.ZERO, CesiumMath.EPSILON14)).toBeTruthy();
expect(center.equalsEpsilon(Cartesian3.ZERO, CesiumMath.EPSILON14)).toEqual(true);
});

it("has a radius", function() {
Expand All @@ -59,9 +59,9 @@ defineSuite([
var numPositions = positions.length;
for ( var i = 0; i < numPositions; i++) {
var currentPos = positions[i];
expect(currentPos.x <= max.x && currentPos.x >= min.x).toBeTruthy();
expect(currentPos.y <= max.y && currentPos.y >= min.y).toBeTruthy();
expect(currentPos.z <= max.z && currentPos.z >= min.z).toBeTruthy();
expect(currentPos.x <= max.x && currentPos.x >= min.x).toEqual(true);
expect(currentPos.y <= max.y && currentPos.y >= min.y).toEqual(true);
expect(currentPos.z <= max.z && currentPos.z >= min.z).toEqual(true);
}
});

Expand All @@ -79,9 +79,9 @@ defineSuite([
var numPositions = positions.length;
for ( var i = 0; i < numPositions; i++) {
var currentPos = positions[i];
expect(currentPos.x <= max.x && currentPos.x >= min.x).toBeTruthy();
expect(currentPos.y <= max.y && currentPos.y >= min.y).toBeTruthy();
expect(currentPos.z <= max.z && currentPos.z >= min.z).toBeTruthy();
expect(currentPos.x <= max.x && currentPos.x >= min.x).toEqual(true);
expect(currentPos.y <= max.y && currentPos.y >= min.y).toEqual(true);
expect(currentPos.z <= max.z && currentPos.z >= min.z).toEqual(true);
}
});
});
9 changes: 9 additions & 0 deletions Specs/Core/BoxTessellatorSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,13 @@ defineSuite([
expect(m.attributes.position.values.length).toEqual(8 * 3);
expect(m.indexLists[0].values.length).toEqual(12 * 3);
});

it("compute2", function() {
expect(function() {
return BoxTessellator.compute({
minimumCorner : new Cartesian3(0, 0, 0),
maximumCorner : new Cartesian3(1, 1, 1)
});
}).not.toThrow();
});
});
2 changes: 1 addition & 1 deletion Specs/Core/CachePoliciesSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ defineSuite([
}

// check that nothing was removed
expect(lastRemoved === null).toBeTruthy();
expect(lastRemoved === null).toEqual(true);
});

it("miss replaces lru", function() {
Expand Down
27 changes: 21 additions & 6 deletions Specs/Core/CacheSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,29 +111,44 @@ defineSuite([
n : 13,
key : "13"
};
expect(cache.remove(thirteenth)).toBeFalsy();
expect(cache.remove(thirteenth)).toEqual(false);

expect(cache.find(thirteenth).fibonacciNumber).toEqual(233);
expect(cache.find(thirteenth).timesHit).toEqual(1);
expect(cache.remove(thirteenth)).toBeTruthy();
expect(cache.remove(thirteenth)).toEqual(true);
expect(cache.find(thirteenth).timesHit).toBeFalsy();
expect(cache.remove({
n : 14,
key : "14"
})).toBeFalsy();
})).toEqual(false);
});

it("remove returns false with no key", function() {
var result = cache.remove();
expect(result).toBeFalsy();
});
expect(result).toEqual(false);
});

it("remove returns false with null key", function() {
var result = cache.remove({"key": null});
expect(result).toEqual(false);
});

it("destroy", function() {
cache = cache && cache.destroy();
expect(cache).toBeUndefined();
});

it("destroys cache with keys", function() {
var tenth = {
n : 10,
key : "10"
};
cache.find(tenth);
cache = cache && cache.destroy();
expect(cache).toBeUndefined();
});

it("isDestroyed returns false", function() {
expect(cache.isDestroyed()).toBeFalsy();
expect(cache.isDestroyed()).toEqual(false);
});
});
Loading