"use strict"; var expect = require("chai").expect; var test_data = require("../../test.data"); var VolumeProfileLayer = require("../../../src/layer/indicator/VolumeProfileLayer"); module.exports = function() { describe("DojiChart.core.VolumeProfileLayer", function() { const CLASS_NAME = "component"; const COMP_WIDTH = 50; const COMP_HEIGHT = 100; const LOW_INPUT = "low"; const HIGH_INPUT = "high"; const VOLUME_INPUT = "volume"; const RELATIVE_WIDTH = 0.9; const VERTEX_COUNT = 20; const COLOR = "blue"; const DATA_OFFSET = 0; const DATA_COUNT = 90; const CONFIG = { lowInput: LOW_INPUT, highInput: HIGH_INPUT, volumeInput: VOLUME_INPUT, relativeWidth: RELATIVE_WIDTH, vertexCount: VERTEX_COUNT, color: COLOR }; //var val_min = 1.06800; //var val_max = 1.06950; var val_min = 1.06750; var val_max = 1.06990; var val_range = val_max - val_min; var px_height = COMP_HEIGHT; var px_padding_offset = 0; const DUMMY_valueToPixel = function(val) { return ((val - val_min) / val_range * px_height) - px_padding_offset; }; const DUMMY_indexToPixel = function(indx) { return (indx * 2) + 2; }; const DUMMY_value_bounds = {min:val_min, max:val_max}; var HTMLCanvasElement_class = (window.document.createElement("canvas")).constructor; // a workaround to avoid jshint HTMLCanvasElement is undefined var test_area, canvas, dummy_comp, dummy_data; before(function() { test_area = window.document.getElementById("layer-test-area"); //test_area.innerHTML = ""; canvas = window.document.createElement("canvas"); canvas.className = CLASS_NAME; canvas.setAttribute("width", COMP_WIDTH); canvas.setAttribute("height", COMP_HEIGHT); test_area.appendChild(canvas); dummy_comp = { getEl: function() { return canvas; }, getContext: function() { return canvas.getContext("2d"); }, getWidth: function() { return COMP_WIDTH; }, getDrawingWidth: function() { return COMP_WIDTH; }, getHeight: function() { return COMP_HEIGHT; } }; dummy_data = { getRawData: function() { return test_data; }, getFieldMap: function() { return { time: "t", open: "o", high: "h", low: "l", close: "c", volume: "v" }; } }; }); describe("canvas (fixture)", function() { it("exist", function() { expect(canvas).to.exist; }); it("is a HTMLCanvasElement", function() { expect(canvas).to.be.an.instanceof(HTMLCanvasElement_class); }); it("has correct width", function() { expect(canvas.width).to.equal(COMP_WIDTH); }); it("has correct height", function() { expect(canvas.height).to.equal(COMP_HEIGHT); }); }); // end of fixtures describe("properties", function() { var layer; beforeEach(function() { layer = new VolumeProfileLayer(CONFIG); layer.setParentComponent(dummy_comp); }); afterEach(function() { layer = undefined; }); describe(".elements property", function() { it("should be empty array", function() { expect(layer.elements).to.be.an("array"); expect(layer.elements).to.have.lengthOf(0); }); }); describe("._parent_component property", function() { it("should equal parent component instance", function() { expect(layer._parent_component).to.equal(dummy_comp); }); }); }); // end of properties describe("methods", function() { var layer; beforeEach(function() { layer = new VolumeProfileLayer(CONFIG); layer.setParentComponent(dummy_comp); }); afterEach(function() { layer = undefined; }); describe("getParentComponent()", function() { it("should exist", function() { expect(layer.getParentComponent).to.exist; }); it("should return correct value", function() { expect(layer.getParentComponent()).to.equal(dummy_comp); }); }); describe("setParentComponent()", function() { it("should exist", function() { expect(layer.setParentComponent).to.exist; }); it("should set parent component property", function() { layer.setParentComponent(dummy_comp); expect(layer._parent_component).to.equal(dummy_comp); }); }); describe("getWidth()", function() { it("should exist", function() { expect(layer.getWidth).to.exist; }); it("should return correct value (" + COMP_WIDTH + ")", function() { expect(layer.getWidth()).to.equal(COMP_WIDTH); }); }); describe("getDrawingWidth()", function() { it("should exist", function() { expect(layer.getDrawingWidth).to.exist; }); it("should return correct value (" + COMP_WIDTH + ")", function() { expect(layer.getDrawingWidth()).to.equal(COMP_WIDTH); }); }); describe("getHeight()", function() { it("should exist", function() { expect(layer.getHeight).to.exist; }); it("should return correct value (" + COMP_HEIGHT + ")", function() { expect(layer.getHeight()).to.equal(COMP_HEIGHT); }); }); describe("_getContext()", function() { it("should exist", function() { expect(layer._getContext).to.exist; }); it("should return correct value", function() { expect(layer._getContext()).to.equal(canvas.getContext("2d")); }); }); describe("precompute()", function() { it("should exist", function() { expect(layer.precompute).to.not.exist; }); // more tests here }); describe("draw()", function() { it("should exist", function() { expect(layer.draw).to.exist; }); it("should add elements to elements property and draw to canvas", function() { expect(layer.elements).to.be.an("array"); expect(layer.elements).to.have.lengthOf(0); layer.draw(dummy_data, DATA_COUNT, DATA_OFFSET, DUMMY_valueToPixel, DUMMY_indexToPixel, DUMMY_value_bounds); //expect(layer.elements).to.be.an("array"); //expect(layer.elements).to.have.lengthOf(VERTEX_COUNT); }); }); }); // end of methods }); };