krzysztof kuzmicki | 0deebae | 2018-10-10 10:19:48 +0200 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Executes the PNF registration test cases including setup and teardown |
| 3 | ... |
| 4 | |
| 5 | Resource ../resources/test_templates/pnf_registration_without_SO_template.robot |
| 6 | |
| 7 | |
| 8 | *** Test Cases *** |
| 9 | |
| 10 | Create A&AI antry without SO and succesfully registrate PNF, PNF entry contains: correlation ID, PNF_IPv4_address and PNF_IPv6_address |
| 11 | [Documentation] This test is checking creation A&AI entry without SO and succesfull PNF registration |
| 12 | [Tags] pnf_registrate |
| 13 | [Setup] Initialize PNF entry with correlation ID, PNF_IPv4_address and PNF_IPv6_address |
| 14 | Create A&AI antry without SO and succesfully registrate PNF ${PNF_entry_dict} |
| 15 | [Teardown] Cleanup PNF entry in A&AI ${PNF_entry_dict} |
| 16 | |
| 17 | |
| 18 | *** Keyword *** |
| 19 | |
| 20 | Initialize PNF entry with correlation ID, PNF_IPv4_address and PNF_IPv6_address |
| 21 | [Documentation] Setup test case variable |
| 22 | ${PNF_entry_dict}= Create Dictionary correlation_id=ABCDEFG1234567 PNF_IPv4_address=13.13.13.13 PNF_IPv6_address=2001:0db8:0:0:0:0:1428:57ab |
| 23 | Set Test Variable ${PNF_entry_dict} |
| 24 | Log Initial PNF entry ${PNF_entry_dict} |
| 25 | |