Commit 0a5923f0 authored by Filipe Ferreira's avatar Filipe Ferreira
Browse files

- Use 'List' for array notation

- Set any_value for data structures
parent 288e7be8
Loading
Loading
Loading
Loading
+9 −6
Original line number Original line Diff line number Diff line
@@ -56,8 +56,9 @@ Package plat_mp1_dns_rules {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     DnsRule set to any_value   // TODO This is a data structure. Can it be like this?
                     DnsRuleList containing
                                                // TODO From Table 7.12.3.1-2 DnsRule is an array. From swagger it's not.
                        DnsRule set to any_value
                     ;
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
@@ -104,11 +105,13 @@ Package plat_mp1_dns_rules {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     DnsRule containing      // TODO This is an array. How to state it here? 
                     DnsRuleList containing 
                        DnsRule containing  
                           dnsRuleId set to DNS_RULE_ID
                           dnsRuleId set to DNS_RULE_ID
                        ;
                        ;
                     ;
                     ;
                  ;
                  ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
            }
            }
         }
         }
@@ -213,7 +216,7 @@ Package plat_mp1_dns_rules {
                  status_code set to "400 BAD REQUEST"
                  status_code set to "400 BAD REQUEST"
                  body containing
                  body containing
                     ProblemDetails containing
                     ProblemDetails containing
                        detail set to "state value not allowed"  // TODO this text may vary. What to define here?
                        detail set to any_value
                     ;
                     ;
                  ; 
                  ; 
               ;
               ;
@@ -262,7 +265,7 @@ Package plat_mp1_dns_rules {
                  status_code set to "404 NOT FOUND"
                  status_code set to "404 NOT FOUND"
                  body containing
                  body containing
                     ProblemDetails containing
                     ProblemDetails containing
                        detail set to "DNS rule ID doesn't exist"  // TODO this text may vary. What to define here?
                        detail set to any_value
                     ;
                     ;
                  ; 
                  ; 
               ;
               ;
+1 −1
Original line number Original line Diff line number Diff line
@@ -56,7 +56,7 @@ Package plat_mp1_notifications {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     Mp1SubscriptionLinkList set to any_value   // TODO This is a data structure. Can it be like this?
                     Mp1SubscriptionLinkList set to any_value
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
+3 −2
Original line number Original line Diff line number Diff line
@@ -53,8 +53,9 @@ Package plat_mp1_services {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     ServiceInfo set to any_value  // TODO This is a data structure. Can it be like this?
                     ServiceInfoList containing
                                                   // TODO From Table 7.4.3.1-2 ServiceInfo is an array. From swagger it's not.
                        ServiceInfo set to any_value
                     ;
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
+2 −2
Original line number Original line Diff line number Diff line
@@ -53,7 +53,7 @@ Package plat_mp1_timing {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     TimingCaps set to any_value  // TODO This is a data structure. Can it be like this?
                     TimingCaps set to any_value
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
@@ -94,7 +94,7 @@ Package plat_mp1_timing {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     CurrentTime set to any_value  // TODO This is a data structure. Can it be like this?
                     CurrentTime set to any_value
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
+3 −2
Original line number Original line Diff line number Diff line
@@ -56,8 +56,9 @@ Package plat_mp1_traffic_rules {
               the IUT entity sends a HttpMsg containing
               the IUT entity sends a HttpMsg containing
                  status_code set to "200 OK"
                  status_code set to "200 OK"
                  body containing
                  body containing
                     TrafficRule set to any_value  // TODO This is a data structure. Can it be like this?
                     TrafficRuleList containing
                                                   // TODO From Table 7.10.3.1-2 TrafficRule is an array. From swagger it's not.
                        TrafficRule set to any_value
                     ;
                  ;
                  ;
               ;
               ;
               to the MEC_APP entity
               to the MEC_APP entity
Loading