def test_integration_revoke_sign_in_sessions(self): log = logging.getLogger("Test") test_conn = Connection() test_action = RevokeSignInSessions() test_conn.logger = log test_action.logger = log try: with open("../tests/revoke_sign_in_sessions.json") as file: test_json = json.loads(file.read()).get("body") connection_params = test_json.get("connection") action_params = test_json.get("input") except Exception as e: message = """ Could not find or read sample tests from /tests directory An exception here likely means you didn't fill out your samples correctly in the /tests directory Please use 'icon-plugin generate samples', and fill out the resulting test files in the /tests directory """ self.fail(message) test_conn.connect(connection_params) test_action.connection = test_conn results = test_action.run(action_params) self.assertEquals({"success": True}, results)
def test_integration_create_user(self): """ TODO: Implement assertions at the end of this test case This is an integration test that will connect to the services your plugin uses. It should be used as the basis for tests below that can run independent of a "live" connection. This test assumes a normal plugin structure with a /tests directory. In that /tests directory should be json samples that contain all the data needed to run this test. To generate samples run: icon-plugin generate samples """ log = logging.getLogger("Test") test_conn = Connection() test_action = CreateUser() test_conn.logger = log test_action.logger = log try: with open("../tests/create_user.json") as file: test_json = json.loads(file.read()).get("body") connection_params = test_json.get("connection") action_params = test_json.get("input") except Exception as e: message = """ Could not find or read sample tests from /tests directory An exception here likely means you didn't fill out your samples correctly in the /tests directory Please use 'icon-plugin generate samples', and fill out the resulting test files in the /tests directory """ self.fail(message) test_conn.connect(connection_params) test_action.connection = test_conn results = test_action.run(action_params) # TODO: Remove this line self.fail("Unimplemented test case") # TODO: The following assert should be updated to look for data from your action # For example: self.assertEquals({"success": True}, results) self.assertEquals({}, results)
def test_integration_risk_detection(self, mockSend): """ TODO: Manually validate results Because the send function is essentially an endless loop, there's no way to validate the output from that in an elegant way. Really this test is just making sure no exceptions are thrown. The bulk of your logic for your trigger should not be in the run loop and should be tested with subsequent tests. """ log = logging.getLogger("Test") try: with open("../tests/risk_detection.json") as f: data = json.load(f) connection_params = data.get("body").get("connection") trigger_params = data.get("body").get("input") except Exception as e: message = """ Could not find or read sample tests from /tests directory An exception here likely means you didn't fill out your samples correctly in the /tests directory Please use 'icon-plugin generate samples', and fill out the resulting test files in the /tests directory """ self.fail(message) test_connection = Connection() test_connection.logger = log test_connection.connect(connection_params) test_email_received = RiskDetection() test_email_received.connection = test_connection test_email_received.logger = log test_email_received.run(trigger_params) self.fail() # If we made it this far, the run loop failed somehow