mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
70 lines
2.4 KiB
JavaScript
70 lines
2.4 KiB
JavaScript
describe("Ship Factory", function() {
|
|
|
|
var Ship;
|
|
|
|
beforeEach(module('shipyard'));
|
|
beforeEach(inject(['Ship', function (_Ship_) {
|
|
Ship = _Ship_;
|
|
}]));
|
|
|
|
it("can build all ships", function() {
|
|
for (var s in DB.ships) {
|
|
var shipData = DB.ships[s];
|
|
var ship = new Ship(s, shipData.properties, shipData.slots);
|
|
|
|
for (p in shipData.properties) {
|
|
expect(ship[p]).toEqual(shipData.properties[p], s + ' property [' + p + '] does not match when built');
|
|
}
|
|
|
|
ship.buildWith(shipData.defaults);
|
|
|
|
expect(ship.totalCost).toEqual(shipData.retailCost, s + ' retail cost does not match default build cost');
|
|
expect(ship.priorityBands[0].retracted).toBeGreaterThan(0, s + ' cargo');
|
|
expect(ship.powerAvailable).toBeGreaterThan(0, s + ' powerAvailable');
|
|
expect(ship.unladenRange).toBeGreaterThan(0, s + ' unladenRange');
|
|
expect(ship.ladenRange).toBeGreaterThan(0, s + ' ladenRange');
|
|
expect(ship.fuelCapacity).toBeGreaterThan(0, s + ' fuelCapacity');
|
|
expect(ship.unladenTotalRange).toBeGreaterThan(0, s + ' unladenTotalRange');
|
|
expect(ship.ladenTotalRange).toBeGreaterThan(0, s + ' ladenTotalRange');
|
|
expect(ship.shieldStrength).toBeGreaterThan(0, s + ' shieldStrength');
|
|
expect(ship.armourTotal).toBeGreaterThan(0, s + ' armourTotal');
|
|
}
|
|
});
|
|
|
|
it("resets and rebuilds properly", function() {
|
|
var id = 'cobra_mk_iii';
|
|
var cobra = DB.ships[id];
|
|
var shipA = new Ship(id, cobra.properties, cobra.slots);
|
|
var shipB = new Ship(id, cobra.properties, cobra.slots);
|
|
var testShip = new Ship(id, cobra.properties, cobra.slots);
|
|
|
|
var buildA = cobra.defaults;
|
|
var buildB = {
|
|
common:['4A', '4A', '4A', '3D', '3A', '3A', '4C'],
|
|
hardpoints: ['0s', '0s', '2d', '2d', 0, '04'],
|
|
internal: ['45', '03', '2b', '2o', '27', '53']
|
|
};
|
|
|
|
shipA.buildWith(buildA); // Build A
|
|
shipB.buildWith(buildB);// Build B
|
|
testShip.buildWith(buildA);
|
|
|
|
for(var p in testShip) {
|
|
expect(testShip[p]).toEqual(shipA[p], p + ' does not match');
|
|
}
|
|
|
|
testShip.buildWith(buildB);
|
|
|
|
for(var p in testShip) {
|
|
expect(testShip[p]).toEqual(shipB[p], p + ' does not match');
|
|
}
|
|
|
|
testShip.buildWith(buildA);
|
|
|
|
for(var p in testShip) {
|
|
expect(testShip[p]).toEqual(shipA[p], p + ' does not match');
|
|
}
|
|
|
|
});
|
|
|
|
}); |