#!/usr/bin/bash
source "${OET_PATH}"/libs/locallibs/common_lib.sh
function pre_test() {
LOG_INFO "Start to prepare the test environment."
if [[ "${NODE1_FRAME}" != "x86_64" && "${NODE1_FRAME}" != "aarch64" ]]; then
LOG_WARN "Current architecture (${NODE1_FRAME}) is not supported by powerapi, skipping test."
exit 255
fi
DNF_INSTALL "powerapi-devel gcc"
cp common/demo_main.c ./
echo "int main(int argc, const char *args[])
{
TEST_PWR_Register();
TEST_PWR_PROC_QueryProcs(\"\");
TEST_PWR_PROC_QueryProcs(NULL);
TEST_PWR_UnRegister();
return 0;
}
" >> demo_main.c
gcc ./demo_main.c -o demo_main -lpwrapi
LOG_INFO "End to prepare the test environment."
}
function run_test() {
LOG_INFO "Start to run test."
./demo_main > test.log
get_num=$(grep "PWR_PROC_QueryProcs. ret: 0 num:" test.log | head -n 1| awk -F "num:" '{print $2}')
test "$(grep -A1 "\[DEBUG\] QueryProcsByKeywords succeed" test.log | grep -c "PWR_PROC_QueryProcs. ret: 0 num:${get_num}")" -eq 2 -a "$(grep -c "procs" test.log)" -eq "$(("${get_num}"*2))"
CHECK_RESULT $? 0 0 "Check interface TEST_PWR_PROC_QueryProcs failed"
LOG_INFO "End to run test."
}
function post_test() {
LOG_INFO "Start to restore the test environment."
rm -rf demo_main* test.log /root/pwrclient.sock
DNF_REMOVE "$@"
LOG_INFO "End to restore the test environment."
}
main "$@"