From e33c8b0f80dc4c464bf445dbf0c080f073312029 Mon Sep 17 00:00:00 2001 From: rafaelatc3sl <rpd17@c3sl> Date: Fri, 5 Jul 2019 11:29:38 -0300 Subject: [PATCH] Issue #19: Fix json and validate data Signed-off-by: rafaelatc3sl <rpd17@c3sl> --- .gitlab-ci.yml | 9 ++++++--- src/agent/main.cpp | 15 ++++++++++---- src/agent/post.cpp | 48 +++++++++++++++++++++++++------------------- test/init.sh | 8 ++++++++ test/returnTest.bats | 31 +++++++++++++++++----------- 5 files changed, 71 insertions(+), 40 deletions(-) create mode 100755 test/init.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f735305..9fce0008 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,7 +39,7 @@ compileUnix: - make - cd .. - chmod +x generate_agent.sh - - ./generate_agent.sh -idp=1234 -ws=www.C3Sl.ufpr.br -pch=mumm -pcp=6666 -pcu=ninguem -pcpasswd=123mudar -prj=simmc + - ./generate_agent.sh -idp=1234 -ws=www.C3Sl.ufpr.br -pch=simmcdev.c3sl.ufpr.br -pcp=8000 -pcu=ninguem -pcpasswd=123mudar -prj=simmc - chmod +x agent-1234.run compileWin32: @@ -64,7 +64,7 @@ compileWin32: - Xvfb :98 & - export DISPLAY=:98 - cd / - - wine /home/inno/iscc ./builds/simmctic/agent/generate_agent.iss /Didp=1234 /Dws=www.C3Sl.ufpr.br /Dpch=mumm /Dpcp=6666 /Dpcu=ninguem /Dpcpasswd=123mudar /Dprj=simmc /Dversion=1.0.0 + - wine /home/inno/iscc ./builds/simmctic/agent/generate_agent.iss /Didp=1234 /Dws=www.C3Sl.ufpr.br /Dpch=simmcdev.c3sl.ufpr.br /Dpcp=8000 /Dpcu=ninguem /Dpcpasswd=123mudar /Dprj=simmc /Dversion=1.0.0 - mv ./builds/simmctic/agent/agent-1234.exe ./builds/simmctic/agent/agent-32.exe compileWin64: @@ -88,7 +88,7 @@ compileWin64: - Xvfb :98 & - export DISPLAY=:98 - cd / - - wine /home/inno/iscc ./builds/simmctic/agent/generate_agent.iss /Didp=1234 /Dws=www.C3Sl.ufpr.br /Dpch=mumm /Dpcp=6666 /Dpcu=ninguem /Dpcpasswd=123mudar /Dprj=simmc /Dversion=1.0.0 + - wine /home/inno/iscc ./builds/simmctic/agent/generate_agent.iss /Didp=1234 /Dws=www.C3Sl.ufpr.br /Dpch=simmcdev.c3sl.ufpr.br /Dpcp=8000 /Dpcu=ninguem /Dpcpasswd=123mudar /Dprj=simmc /Dversion=1.0.0 - mv ./builds/simmctic/agent/agent-1234.exe ./builds/simmctic/agent/agent-64.exe testDebian: @@ -105,6 +105,7 @@ testDebian: - cd ../test - ./create_users.sh - last -F + - ./init.sh - ./returnTest.bats dependencies: - compileUnix @@ -120,6 +121,7 @@ testUbuntu: - cd test - ./create_users.sh - last -F + - ./init.sh - ./returnTest.bats dependencies: - compileUnix @@ -138,6 +140,7 @@ testOpensuse: - cd test - ./create_users.sh - last -F + - ./init.sh - ./returnTest.bats dependencies: - compileUnix diff --git a/src/agent/main.cpp b/src/agent/main.cpp index 42ca28d2..30c78a2d 100644 --- a/src/agent/main.cpp +++ b/src/agent/main.cpp @@ -189,6 +189,7 @@ int main(int argc, char* argv[]) { agent.setProxy(&proxy); int increment = 0; + int bit_mask = 0; int lim = 1; bool print; bool dev = false; @@ -217,13 +218,19 @@ int main(int argc, char* argv[]) { if (read_config_files(&agent)) { if (agent_send_inventory) { - send_inventory(print, &agent); + if (!send_inventory(print, &agent)) { + bit_mask |= 1; + } } if (agent_send_net_band) { - send_net_bandwidth(print, &agent); + if (!send_net_bandwidth(print, &agent)) { + bit_mask |= 2; + } } if (agent_send_user_hist) { - send_user_history(print, &agent); + if (!send_user_history(print, &agent)) { + bit_mask |= 4; + } } if (agent_send_database) { // get database for PInSIS @@ -231,7 +238,7 @@ int main(int argc, char* argv[]) { } if (lim == 0) { - return (0); + return bit_mask; } int i = 0; diff --git a/src/agent/post.cpp b/src/agent/post.cpp index 2510f005..c6d0574a 100644 --- a/src/agent/post.cpp +++ b/src/agent/post.cpp @@ -42,14 +42,16 @@ int send_inventory(bool print, Agent* agent) { std::cout << "Empty inventory object" << std::endl; } - if (agent->getConnection()->sendJson(agent, - fastWriter.write(inventory), 1, 0) == 200) - return 1; - else if (agent->getConnection()->sendJson(agent, - fastWriter.write(inventory), 1, 1) == 200) - return 1; - else + if (!inventory.isNull()) { + if (agent->getConnection()->sendJson(agent, + fastWriter.write(inventory), 1, 0) == 200) + return 1; + else if (agent->getConnection()->sendJson(agent, + fastWriter.write(inventory), 1, 1) == 200) + return 1; + } else { return 0; + } } /*************************************** @@ -73,14 +75,16 @@ int send_net_bandwidth(bool print, Agent* agent) { std::cout << "Empty network_bandwidth object" << std::endl; } - if (agent->getConnection()->sendJson(agent, - fastWriter.write(net), 2, 0) == 200) - return 1; - else if (agent->getConnection()->sendJson(agent, - fastWriter.write(net), 2, 1) == 200) - return 1; - else + if (!net.isNull()) { + if (agent->getConnection()->sendJson(agent, + fastWriter.write(net), 2, 0) == 200) + return 1; + else if (agent->getConnection()->sendJson(agent, + fastWriter.write(net), 2, 1) == 200) + return 1; + } else { return 0; + } } /********************************** @@ -104,14 +108,16 @@ int send_user_history(bool print, Agent* agent) { std::cout << "Empty user_history object" << std::endl; } - if (agent->getConnection()->sendJson(agent, - fastWriter.write(u_h), 3, 0) == 200) - return 1; - else if (agent->getConnection()->sendJson(agent, - fastWriter.write(u_h), 3, 1) == 200) - return 1; - else + if (!u_h.isNull()) { + if (agent->getConnection()->sendJson(agent, + fastWriter.write(u_h), 3, 0) == 200) + return 1; + else if (agent->getConnection()->sendJson(agent, + fastWriter.write(u_h), 3, 1) == 200) + return 1; + } else { return 0; + } } /** diff --git a/test/init.sh b/test/init.sh new file mode 100755 index 00000000..79689d00 --- /dev/null +++ b/test/init.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +/opt/agentC3SL/agent-v* --print --once > export.json +echo $? > exit_status +echo "{" > inventory.json && jq ."data_inventory" export.json | awk '/{/{flag=1;next}/}/{flag=0}flag' >> inventory.json && echo "}" >> inventory.json +echo "{" > net.json && jq ."data_net" export.json | awk '/{/{flag=1;next}/}/{flag=0}flag' >> net.json && echo "}" >> net.json +cat inventory.json +cat net.json \ No newline at end of file diff --git a/test/returnTest.bats b/test/returnTest.bats index 3c12602d..cbb629d5 100755 --- a/test/returnTest.bats +++ b/test/returnTest.bats @@ -80,12 +80,12 @@ function user () { function port() { obj=$(cat /opt/agentC3SL/conf/proxy-conf.json | jq -r '.port') - [[ "$obj" -eq 6666 ]] + [[ "$obj" -eq 8000 ]] } function host() { obj=$(cat /opt/agentC3SL/conf/proxy-conf.json | jq -r '.host') - [[ "$obj" == "mumm" ]] + [[ "$obj" == "simmcdev.c3sl.ufpr.br" ]] } function web_service() { @@ -138,22 +138,29 @@ function sys_vendor() { [[ "$obj" == "QEMU" ]] } +function exit_status() { + obj=$(cat exit_status) + [[ "$obj" -eq 4 ]] +} + setup() { - /opt/agentC3SL/agent-v* --print --once | head -n -1 > export.json - pt1=$(jq ."data_inventory" export.json | head -n -1) - echo $pt1 > inventory.json - pt2=$(jq ."data_net" export.json | tail -n +2) - echo $pt2 > net.json [ -s export.json ] [ -s inventory.json ] - [ -s net.json ] - cat export.json + [ -s net.json ] } teardown() { - rm -f export.json - rm -f inventory.json - rm -f net.json + if [[ "${#BATS_TEST_NAMES[@]}" -eq "$BATS_TEST_NUMBER" ]]; then + rm -f export.json + rm -f inventory.json + rm -f net.json + rm -f exit_status + fi +} + +@test "Exit Status" { + run exit_status + [ "$status" -eq 0 ] } @test "Id Point" { -- GitLab