Best Python code snippet using localstack_python
test_static_routes.py
Source:test_static_routes.py  
...63            network_objs = self.csfw_client.get_network_objects_list(64                filter="nameOrValue:unittest-network-", expanded=True65            )66            return [INetworkAddress(**network_obj.dict(exclude_unset=True)) for network_obj in network_objs]67    def create_test_static_route(self) -> IPv4StaticRouteModel:68        host_objs = self.create_test_host_objects()69        network_objs = self.create_test_network_objects()70        return self.csfw_client.create_ipv4_static_route(71            self.device.id,72            IPv4StaticRouteModel(73                name="unittest-ipv4-static-route",74                description="Test ipv4 static route object",75                interfaceName="outside",76                gateway={"object": {"type": host_objs[0].type, "id": host_objs[0].id, "name": host_objs[0].name}},77                selectedNetworks=network_objs,78            ),79        )80    def test_get_ipv4_static_routes_list(self) -> None:81        self.create_test_static_route()82        static_routes = self.csfw_client.get_ipv4_static_routes_list(self.device.id, expanded=True)83        self.assertTrue(static_routes)84        [self.assertIsInstance(static_route, IPv4StaticRouteModel) for static_route in static_routes]85    def test_get_ipv4_static_route(self) -> None:86        static_route = self.create_test_static_route()87        self.assertIsInstance(88            self.csfw_client.get_ipv4_static_route(self.device.id, static_route.id),89            IPv4StaticRouteModel,90        )91    def test_create_ipv4_static_route(self) -> None:92        host_obj = self.create_test_host_objects()[0]93        network_objs = self.create_test_network_objects()94        new_static_routes = []95        for network_obj in network_objs:96            new_static_routes.append(97                self.csfw_client.create_ipv4_static_route(98                    self.device.id,99                    IPv4StaticRouteModel(100                        name="unittest-ipv4-static-route",101                        description="Test ipv4 static route object",102                        interfaceName="outside",103                        gateway={"object": {"type": host_obj.type, "id": host_obj.id, "name": host_obj.name}},104                        selectedNetworks=[network_obj],105                    ),106                )107            )108        [self.assertIsInstance(static_route, IPv4StaticRouteModel) for static_route in new_static_routes]109    def test_delete_ipv4_static_route(self) -> None:110        test_static_route = self.create_test_static_route()111        deleted_route = self.csfw_client.delete_ipv4_static_route(self.device.id, test_static_route.id)112        self.assertIsInstance(deleted_route, IPv4StaticRouteModel)113    def test_update_static_route(self) -> None:114        test_static_route = self.create_test_static_route()115        net_obj_2 = self.csfw_client.get_network_objects_list(filter=f"nameOrValue:{common.NET_OBJ_2.name}")[0]116        test_static_route.selectedNetworks.append({"type": net_obj_2.type, "id": net_obj_2.id, "name": net_obj_2.name})117        updated_static_route = self.csfw_client.update_ipv4_static_route(self.device.id, test_static_route)118        self.assertIsInstance(updated_static_route, IPv4StaticRouteModel)119        self.assertEquals(len(updated_static_route.selectedNetworks), 2)120    def test_test_search_static_routes(self):121        """Check to see if a static route already exists for a given network or host"""122        self.create_test_static_route()123        static_routes = self.csfw_client.get_ipv4_static_routes_list(self.device.id)124        matched_routes = self.csfw_client.search_static_routes("unittest-network-1", static_routes)125        if matched_routes:126            [self.assertIsInstance(route, IPv4StaticRouteModel) for route in matched_routes]127        else:128            self.assertTrue(False)129    def test_raise_duplicate_static_route(self):130        passed = False131        try:132            self.create_test_static_route()133            self.create_test_static_route()134        except DuplicateStaticRoute as ex:135            log.error(f"Duplicate Static Route: {ex.msg}")136            passed = True137        finally:...tests.py
Source:tests.py  
...18        rv = self.c.get('/')19        assert "NCT PORTAL" in rv.data.decode("utf-8")20        rv = self.c.get('/index.html')21        assert "NCT PORTAL" in rv.data.decode("utf-8")22    def test_static_route(self):23        rv = self.c.get('static/css/animate.css')24        self.assertEquals(200,  rv.status_code)25    def test_files_route(self):26        rv = self.c.get('/files.html')27        assert "Trade Files" in rv.data.decode("utf-8")28    def test_files_route(self):29        rv = self.c.post('/files.html',30                         data=dict(trade_file=(StringIO(), 'file.csv')) )...__init__.py
Source:__init__.py  
1#!/usr/bin/env python2# -*- coding: utf8 -*-3import unittest4import test_path_parsing, test_route_making, test_static_route5def suite():6  return unittest.TestSuite((7    test_path_parsing.suite(),8    test_route_making.suite(),9    test_static_route.suite(),...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
