Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created threshold agent test for python3 #29

Open
wants to merge 3 commits into
base: volttron-7-preview
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 100 additions & 0 deletions services/ops/ThresholdDetectionAgent/tests/test_threshold_agent.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
# -*- coding: utf-8 -*- {{{
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:

# -*- coding: utf-8 -*- {{{
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et:
#
# Copyright 2017, Battelle Memorial Institute.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This material was prepared as an account of work sponsored by an agency of
# the United States Government. Neither the United States Government nor the
# United States Department of Energy, nor Battelle, nor any of their
# employees, nor any jurisdiction or organization that has cooperated in the
# development of these materials, makes any warranty, express or
# implied, or assumes any legal liability or responsibility for the accuracy,
# completeness, or usefulness or any information, apparatus, product,
# software, or process disclosed, or represents that its use would not infringe
# privately owned rights. Reference herein to any specific commercial product,
# process, or service by trade name, trademark, manufacturer, or otherwise
# does not necessarily constitute or imply its endorsement, recommendation, or
# favoring by the United States Government or any agency thereof, or
# Battelle Memorial Institute. The views and opinions of authors expressed
# herein do not necessarily state or reflect those of the
# United States Government or any agency thereof.
#
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY
# under Contract DE-AC05-76RL01830
# }}}
#}}}

import logging
import sys
import uuid
import unittest
from unittest.mock import Mock
import pytest

from volttron.platform.vip.agent import Agent, Core, PubSub, RPC, compat
from volttron.platform.agent import utils
from volttron.platform.messaging.health import Status, STATUS_BAD
from volttrontesting.utils.utils import AgentMock
from thresholddetection.agent import ThresholdDetectionAgent

utils.setup_logging()
_log = logging.getLogger(__name__)
__version__ = '3.7'


class TestAgent(unittest.TestCase):

def setUp(self):
ThresholdDetectionAgent.__bases__ = (AgentMock.imitate(Agent, Agent()), )

def test_config(self):
agent = ThresholdDetectionAgent('..\\thresholddetection.config')
assert agent is not None
agent.vip.assert_has_calls(agent.vip.config.set_default('config', 'thresholddetection.config'))
agent.vip.assert_has_calls(agent.vip.config.subscribe(agent._config_add, actions="NEW", pattern="config"))
agent.vip.assert_has_calls(agent.vip.config.subscribe(agent._config_del, actions="DELETE", pattern="config"))
agent.vip.assert_has_calls(agent.vip.config.subscribe(agent._config_mod, actions="UPDATE", pattern="config"))

def test_alert_high(self):
all_calls = []
agent = ThresholdDetectionAgent('../thresholddetection.config')
agent._alert('datalogger/log/platform/cpu_percent', 99, 100)
for call in agent.vip.mock_calls:
all_calls.append(call)
assert 'above' in all_calls[4].args[1].context

def test_alert_low(self):
all_calls = []
agent = ThresholdDetectionAgent('../thresholddetection.config')
agent._alert('datalogger/log/platform/cpu_percent', 99, 90)
for call in agent.vip.mock_calls:
all_calls.append(call)
assert 'below' in all_calls[4].args[1].context


def main(argv=sys.argv):
agent = ThresholdDetectionAgent()


if __name__ == '__main__':
# Entry point for script
try:
sys.exit(main())
except KeyboardInterrupt:
pass
16 changes: 15 additions & 1 deletion volttrontesting/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,21 @@ def validate_published_device_data(expected_headers, expected_message,


class AgentMock(object):

'''
The purpose for this parent class is to be used for unit
testing of agents. It takes in the class methods of other
classes, turns them into it's own mock methods. For testing,
dynamically replace the agent's current base class with this
class, while passing in the agent's current classes as arguments.

For example:
Agent_to_test.__bases__ = (AgentMock.imitate(Agent, Agent()), )

As noted in the example, __bases__ takes in a tuple.
Also, the parent class Agent is passed as both Agent and the
instantiated Agent(), since it contains a class within it
that needs to be mocked as well
'''
@classmethod
def imitate(cls, *others):
for other in others:
Expand Down