#!/usr/bin/bash
source "${OET_PATH}"/libs/locallibs/common_lib.sh
function pre_test() {
LOG_INFO "Start to prepare the test environment."
if [ "${NODE1_MACHINE}" != "physical" ]; then
LOG_INFO "The environment does not support testing"
exit 0
fi
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"
useradd test1
cp common/demo_main.c ./
echo "int main(int argc, const char *args[])
{
TEST_PWR_Register();
TEST_PWR_RequestControlAuth();
TEST_PWR_UnRegister();
return 0;
}
" >> demo_main.c
gcc ./demo_main.c -o demo_main -lpwrapi
cp demo_main /home/test1/
echo > /var/log/pwrapis/papis.log
LOG_INFO "End to prepare the test environment."
}
function run_test() {
LOG_INFO "Start to run test."
su - test1 -c "./demo_main" > test.log
grep -Pz "Server has closed connection. This client has no admin permission[\S\s]*RequestControlAuth failed. ret:2" test.log && grep "the client <test1> has no admin permission!" /var/log/pwrapis/papis.log
CHECK_RESULT $? 0 0 "Check interface PWR_RequestControlAuth failed"
LOG_INFO "End to run test."
}
function post_test() {
LOG_INFO "Start to restore the test environment."
userdel -r test1
rm -rf demo_main* pwrclient.sock test.log
DNF_REMOVE "$@"
LOG_INFO "End to restore the test environment."
}
main "$@"