!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/netdata/tests/node.d/   drwxr-xr-x
Free 12.97 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     fronius.process.spec.js (2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";
// SPDX-License-Identifier: GPL-3.0-or-later

var netdata = require("../../node.d/node_modules/netdata");
// remember: subject will be a singleton!
var subject = require("../../node.d/fronius.node");

var service = netdata.service({
    name: "process",
    module: this
});

var exampleResponse = {
    "Body": {
        "Data": {
            "Site": {
                "Mode": "meter",
                "P_Grid": -3430.729923,
                "P_Load": -910.270077,
                "P_Akku": null,
                "P_PV": 4341,
                "rel_SelfConsumption": 20.969133,
                "rel_Autonomy": 100,
                "E_Day": 57230,
                "E_Year": 6425915.5,
                "E_Total": 15388710,
                "Meter_Location": "grid"
            },
            "Inverters": {
                "1": {
                    "DT": 123,
                    "P": 4341,
                    "E_Day": 57230,
                    "E_Year": 6425915.5,
                    "E_Total": 15388710
                }
            }
        }
    }
};

describe("fronius main processing", function () {

    beforeAll(function () {
        // change this to enable debug log
        netdata.options.DEBUG = false;
    });

    beforeEach(function () {
        deleteProperties(subject.charts);
    });

    it("should send parsed values to netdata", function () {
        netdata.send = jasmine.createSpy("send");

        subject.processResponse(service, exampleResponse);

        expect(netdata.send.calls.count()).toBe(6);

        // check if some parsed values were sent.
        var powerChart = netdata.send.calls.argsFor(5)[0];

        expect(powerChart).toContain("SET p_grid = -3431");
        expect(powerChart).toContain("SET p_pv = 4341");

        var inverterChart = netdata.send.calls.argsFor(0)[0];

        expect(inverterChart).toContain("SET 1 = 4341");

        var autonomyChart = netdata.send.calls.argsFor(3)[0];
        expect(autonomyChart).toContain("SET rel_selfconsumption = 21");
    });


});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]--