summaryrefslogtreecommitdiffstats
path: root/tests/web/easypiechart.percentage.spec.js
blob: 9a483909912ad4260223241a776bd3a33f632cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
"use strict";


describe("percentage calculations for easy pie charts with dynamic range", function () {

    it("should return positive value, if value greater than dynamic max", function () {
        var state = createState(null, null);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 6, 2, 10);

        expect(result).toBe(60);
    });

    it("should return negative value, if value lesser than dynamic min", function () {
        var state = createState(null, null);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, -6, -10, 10);

        expect(result).toBe(-60);
    });

    it("should return 0.1 if value is zero and min/max undefined", function () {
        var state = createState(null, null);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 0, -1, 2);

        expect(result).toBe(0.1);
    });

    it("should return positive value, if max is user-defined", function () {
        var state = createState(null, 50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 46, -40, 50);

        expect(result).toBe(92);
    });

    it("should return negative value, if min is user-defined", function () {
        var state = createState(-50, null);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, -46, -50, 40);

        expect(result).toBe(-92);
    });

});

describe("percentage calculations for easy pie charts with fixed range", function () {

    it("should return positive value, if min and max are user-defined", function () {
        var state = createState(40, 50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 46, 40, 50);

        expect(result).toBe(60);
    });

    it("should return 100 if positive min and max are user-defined, but value is greater than max", function () {
        var state = createState(40, 50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 60, 40, 50);

        expect(result).toBe(100);
    });

    it("should return 0.1 if positive min and max are user-defined, but value is smaller than min", function () {
        var state = createState(40, 50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, 39.9, 42, 48);

        expect(result).toBe(0.1);
    });

    it("should return -100 if negative min and max are user-defined, but value is smaller than min", function () {
        var state = createState(-40, -50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, -50.1, -40, -50);

        expect(result).toBe(-100);
    });

    it("should return 0.1 if negative min and max are user-defined, but value is smaller than min", function () {
        var state = createState(-40, -50);

        var result = NETDATA.easypiechartPercentFromValueMinMax(state, -50.1, -20, -45);

        expect(result).toBe(-100);
    });
});

function createState(min, max) {
    // create a fake state with only the needed properties.
    return {
        tmp: {
            easyPieChartMin: min,
            easyPieChartMax: max
        }
    };
}