Index: tst_unhandled_message_log/test.py =================================================================== diff -u -r40314c67874695eefc506c3a6a33896495953edd -r316fd2f51b0fa89c0f69949d79ef246e1e4bc4ed --- tst_unhandled_message_log/test.py (.../test.py) (revision 40314c67874695eefc506c3a6a33896495953edd) +++ tst_unhandled_message_log/test.py (.../test.py) (revision 316fd2f51b0fa89c0f69949d79ef246e1e4bc4ed) @@ -1,20 +1,18 @@ -# -*- coding: utf-8 -*- -## -# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. -# copyright -# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, -# IN PART OR IN WHOLE, -# WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +########################################################################### # -# file tst_inhandled_message_log -# date 2022/04/09 -# author sai chaithyna ela -# joseph varghese +# Copyright (c) 2022-2025 Diality Inc. - All Rights Reserved. # +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# NOTE: -# This test verifies the unhandled logs for the messages provided. -# Scenarios are covered based on equivalence partitioning method of testing. +# @file test.py +# +# @author (last) Behrouz NematiPour +# @date (last) 12-Jun-2024 +# @author (original) joseph_varghese +# @date (original) 27-Apr-2022 +# +############################################################################ import csv from dialin.ui.hd_simulator import HDSimulator @@ -26,7 +24,7 @@ hd_simulator = HDSimulator() -LOCATION = '/home/denali/Projects/application/resources/settings/Messages/Unhandled.conf' +LOCATION = '/home/denali/Projects/unittests/resources/settings/Messages/Unhandled.conf' DUMMY_FLOAT_VALUE_1 = 1.250 DUMMY_FLOAT_VALUE_2 = 5.855 @@ -127,7 +125,7 @@ """ This function is capable to write custom API's on unhandled.conf folder. - unhandled.conf location = '/home/denali/Projects/application/resources/settings/Messages/Unhandled.conf' + unhandled.conf location = '/home/denali/Projects/unittests/resources/settings/Messages/Unhandled.conf' Through this method filereader act as a handler and it will write custom unhandled messages on Unhandled.conf NB: it is a single time callable method should only use before starting the application. it is mandatory @@ -148,7 +146,7 @@ """ This function is capable to remove custom API's which is written during method "append_unhandled_configuration_file()". - unhandled.conf location = '/home/denali/Projects/application/resources/settings/Messages/Unhandled.conf' + unhandled.conf location = '/home/denali/Projects/unittests/resources/settings/Messages/Unhandled.conf' NB: it is a single time callable method should use only after calling "append_unhandled_configuration_file()" method. """