Skip to content

Commit

Permalink
[uss_qualifier/scenarios/netrid/nominal_behavior] Add checks for UA c…
Browse files Browse the repository at this point in the history
…lassification in SP (NET0260)
  • Loading branch information
mickmis committed Dec 17, 2024
1 parent 5d093a8 commit f82aa54
Show file tree
Hide file tree
Showing 6 changed files with 301 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import datetime
import math
from typing import List, Optional
from typing import List, Optional, Dict

from arrow import ParserError
from implicitdict import StringBasedDateTime
Expand Down Expand Up @@ -33,6 +34,14 @@
from monitoring.uss_qualifier.resources.netrid.evaluation import EvaluationConfiguration
from monitoring.uss_qualifier.scenarios.scenario import TestScenarioType

UA_CLASSIFICATION_FIELDS = [
"eu_classification"
] # all field names specifying UA classification type


def _get_classification_fields(details: dict) -> Dict[str, Optional[dict]]:
return {field: details.get(field) for field in UA_CLASSIFICATION_FIELDS}


class RIDCommonDictionaryEvaluator(object):
def __init__(
Expand Down Expand Up @@ -95,19 +104,32 @@ def evaluate_dp_flight(
participants,
)

def evaluate_sp_details(self, details: FlightDetails, participants: List[str]):
def evaluate_sp_details(
self,
injected_details: injection.RIDFlightDetails,
observed_details: FlightDetails,
participant_id: ParticipantID,
query_timestamp: datetime.datetime,
):
"""Implements fragment documented in `common_dictionary_evaluator_sp_flight_details.md`."""

self._evaluate_uas_id(details.raw.get("uas_id"), participants)
self._evaluate_operator_id(None, details.operator_id, participants)
self._evaluate_uas_id(observed_details.raw.get("uas_id"), [participant_id])
self._evaluate_ua_classification(
_get_classification_fields(injected_details),
_get_classification_fields(observed_details.raw),
participant_id,
query_timestamp,
)

self._evaluate_operator_id(None, observed_details.operator_id, [participant_id])
self._evaluate_operator_location(
None,
None,
None,
details.operator_location,
details.operator_altitude,
details.operator_altitude_type,
participants,
observed_details.operator_location,
observed_details.operator_altitude,
observed_details.operator_altitude_type,
[participant_id],
)

def evaluate_dp_details(
Expand Down Expand Up @@ -651,3 +673,209 @@ def _evaluate_operational_status(
key="skip_reason",
message=f"Unsupported version {self._rid_version}: skipping Operational Status evaluation",
)

def _evaluate_ua_type(
self,
injected_val: Optional[str],
observed_val: Optional[str],
participants: List[ParticipantID],
query_timestamp: datetime.datetime,
):
with self._test_scenario.check(
"UA type is present and consistent with injected one",
participants,
) as check:
if observed_val is None:
check.record_failed(
"UA type is missing",
details="USS did not return any UA type",
query_timestamps=[query_timestamp],
)
elif not observed_val:
check.record_failed(
"UA type is empty",
details="USS returned an empty UA type",
query_timestamps=[query_timestamp],
)

equivalent = {injection.UAType.HybridLift, injection.UAType.VTOL}
if injected_val is None:
if observed_val != injection.UAType.NotDeclared:
check.record_failed(
"UA type is inconsistent, expected 'NotDeclared' since no value was injected",
details=f"USS returned the UA type {observed_val}, yet no value was injected, which should have been mapped to 'NotDeclared'.",
query_timestamps=[query_timestamp],
)

elif injected_val in equivalent:
if observed_val not in equivalent:
check.record_failed(
"UA type is inconsistent with injected value",
details=f"USS returned the UA type {observed_val}, yet the value {injected_val} was injected, given that {equivalent} are equivalent .",
query_timestamps=[query_timestamp],
)

elif injected_val != observed_val:
check.record_failed(
"UA type is inconsistent with injected value",
details=f"USS returned the UA type {observed_val}, yet the value {injected_val} was injected.",
query_timestamps=[query_timestamp],
)

with self._test_scenario.check(
"UA type is consistent with Common Data Dictionary",
participants,
) as check:
try:
injection.UAType(observed_val)
except ValueError:
check.record_failed(
"UA type is invalid",
details=f"USS returned an invalid UA type: {observed_val}.",
query_timestamps=[query_timestamp],
)

if (
self._rid_version == RIDVersion.f3411_19
and observed_val == injection.UAType.HybridLift
) or (
self._rid_version == RIDVersion.f3411_22a
and observed_val == injection.UAType.VTOL
):
check.record_failed(
"UA type is inconsistent RID version",
details=f"USS returned the UA type {observed_val} which is not supported by the RID version used ({self._rid_version}).",
query_timestamps=[query_timestamp],
)

def _evaluate_ua_classification(
self,
injected_ua_classifications: Dict[str, Optional[dict]],
observed_ua_classifications: Dict[str, Optional[dict]],
participant_id: ParticipantID,
query_timestamp: datetime.datetime,
):
"""
Note that the classification type is defined implicitly by presence of field 'eu_classification' or not:
> When this field is specified, the Classification Type is "European Union". If no other classification
> field is specified, the Classification Type is "Undeclared".
"""
if self._rid_version == RIDVersion.f3411_19:
self._test_scenario.record_note(
key="skip_reason",
message=f"Unsupported version {self._rid_version}: skipping UA classification evaluation",
)
return

injected_classification_fields = set(injected_ua_classifications.keys())
observed_classification_fields = set(observed_ua_classifications.keys())

with self._test_scenario.check(
"UA classification type is consistent with injected one",
participant_id,
) as check:
if injected_classification_fields != observed_classification_fields:
check.record_failed(
"UA classification type is inconsistent with injected value.",
details=f"USS returned UA classification type {observed_classification_fields} yet the type injected was {injected_classification_fields}.",
query_timestamps=[query_timestamp],
)

with self._test_scenario.check(
"UA classification type is consistent with Common Data Dictionary",
participant_id,
) as check:
if len(observed_classification_fields) > 1:
check.record_failed(
"UA classification type is inconsistent with Common Data Dictionary.",
details=f"USS returned several UA classification types {observed_classification_fields}, but either zero or one was expected.",
query_timestamps=[query_timestamp],
)

if injected_ua_classifications.get("eu_classification") is not None:
# evaluate classification type "European Union" if it was that type that was injected
self._evaluate_ua_classification_eu(
injected_ua_classifications.get("eu_classification"),
observed_ua_classifications.get("eu_classification"),
participant_id,
query_timestamp,
)

def _evaluate_ua_classification_eu(
self,
injected_eu_classification: Optional[dict],
observed_eu_classification: Optional[dict],
participant_id: ParticipantID,
query_timestamp: datetime.datetime,
):
injected_eu_category = injected_eu_classification.get("category")
injected_eu_class = injected_eu_classification.get("class")
observed_eu_category = (
observed_eu_classification.get("category")
if observed_eu_classification
else None
)
observed_eu_class = (
observed_eu_classification.get("class")
if observed_eu_classification
else None
)

with self._test_scenario.check(
"UA classification for 'European Union' type is consistent with injected one",
participant_id,
) as check:
if injected_eu_category is None:
if (
observed_eu_category
!= injection.UAClassificationEUCategory.EUCategoryUndefined
):
check.record_failed(
"UA classification for 'European Union' type has an invalid category, expected 'EUCategoryUndefined' since no value was injected.",
details=f"USS returned the category of UA classification for 'European Union' type {observed_eu_category}, yet no value was injected which should have been mapped to 'EUCategoryUndefined'.",
query_timestamps=[query_timestamp],
)
elif injected_eu_category != observed_eu_category:
check.record_failed(
"UA classification for 'European Union' type is inconsistent with injected value.",
details=f"USS returned the category of UA classification for 'European Union' type {observed_eu_category}, yet the category injected was {injected_eu_category}.",
query_timestamps=[query_timestamp],
)

if injected_eu_class is None:
if (
observed_eu_class
!= injection.UAClassificationEUClass.EUClassUndefined
):
check.record_failed(
"UA classification for 'European Union' type has an invalid class, expected 'EUClassUndefined' since no or invalid value was injected.",
details=f"USS returned the class of UA classification for 'European Union' type {observed_eu_class}, yet no value was injected which should have been mapped to 'EUClassUndefined'.",
query_timestamps=[query_timestamp],
)
elif injected_eu_class != observed_eu_class:
check.record_failed(
"UA classification for 'European Union' type is inconsistent with injected value.",
details=f"USS returned the class of UA classification for 'European Union' type {observed_eu_class}, yet the class injected was {injected_eu_class}.",
query_timestamps=[query_timestamp],
)

with self._test_scenario.check(
"UA classification for 'European Union' type is consistent with Common Data Dictionary",
participant_id,
) as check:
try:
injection.UAClassificationEUCategory(observed_eu_category)
except ValueError:
check.record_failed(
"UA classification for 'European Union' type has an invalid category",
details=f"USS returned an invalid category of UA classification for 'European Union' type: {observed_eu_category}.",
query_timestamps=[query_timestamp],
)
try:
injection.UAClassificationEUClass(observed_eu_class)
except ValueError:
check.record_failed(
"UA classification for 'European Union' type has an invalid class",
details=f"USS returned an invalid class of UA classification for 'European Union' type: {observed_eu_class}.",
query_timestamps=[query_timestamp],
)
Original file line number Diff line number Diff line change
Expand Up @@ -1198,8 +1198,18 @@ def _evaluate_normal_sp_observation(
query_timestamps=[details_query.query.request.timestamp],
)

# Get details that are expected to be valid for the present telemetry:
telemetry_inj = mapping.injected_flight.flight.telemetry[
mapping.telemetry_index
]
details_inj = mapping.injected_flight.flight.get_details(
telemetry_inj.timestamp.datetime
)
self._common_dictionary_evaluator.evaluate_sp_details(
details_query.details, [mapping.injected_flight.uss_participant_id]
details_inj,
details_query.details,
mapping.injected_flight.uss_participant_id,
details_query.query.request.timestamp,
)

def _evaluate_area_too_large_sp_observation(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ NET0260 requires that relevant Remote ID data, consistent with the common data d

NET0260 requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider. This check validates that the UAS ID is in serial number format. (**[astm.f3411.v22a.NET0260,Table1,1a](../../../../requirements/astm/f3411/v22a.md)**)

## ⚠️ UA classification type is consistent with injected one check

**[astm.f3411.v22a.NET0260,Table1,4](../../../../requirements/astm/f3411/v22a.md)** requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider.
This check will fail if the UA classification type is inconsistent with the injected value.

## ⚠️ UA classification type is consistent with Common Data Dictionary check

**[astm.f3411.v22a.NET0260,Table1,4](../../../../requirements/astm/f3411/v22a.md)** requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider.
The UA classification type is implicitly defined by the presence of an UA classification field, or left undefined by the absence of all of them.
This check will fail if more than one UA classification types are defined.

## ⚠️ UA classification for 'European Union' type is consistent with injected one check

**[astm.f3411.v22a.NET0260,Table1,3](../../../../requirements/astm/f3411/v22a.md)** requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider.
The UA classification being an optional field, this check will fail only if it is inconsistent with the injected value.

## ⚠️ UA classification for 'European Union' type is consistent with Common Data Dictionary check

**[astm.f3411.v22a.NET0260,Table1,3](../../../../requirements/astm/f3411/v22a.md)** requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider.
This check will fail if the UA classification has an invalid value.

## Operator ID consistency with Common Dictionary check

NET0260 requires that relevant Remote ID data, consistent with the common data dictionary, be reported by the Service Provider. This check validates that the Operator ID, if present, is expressed as ASCII text. (**[astm.f3411.v22a.NET0260,Table1,9](../../../../requirements/astm/f3411/v22a.md)**)
Expand Down
12 changes: 11 additions & 1 deletion monitoring/uss_qualifier/suites/astm/netrid/f3411_22a.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<th><a href="../../README.md#checked-in">Checked in</a></th>
</tr>
<tr>
<td rowspan="100" style="vertical-align:top;"><a href="../../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td rowspan="102" style="vertical-align:top;"><a href="../../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td><a href="../../../requirements/astm/f3411/v22a.md">DSS0010</a></td>
<td>Implemented</td>
<td><a href="../../../scenarios/astm/netrid/v22a/dss/token_validation.md">ASTM NetRID DSS: Token Validation</a></td>
Expand Down Expand Up @@ -351,6 +351,16 @@
<td>Implemented</td>
<td><a href="../../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../../requirements/astm/f3411/v22a.md">NET0260,Table1,3</a></td>
<td>Implemented</td>
<td><a href="../../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../../requirements/astm/f3411/v22a.md">NET0260,Table1,4</a></td>
<td>Implemented</td>
<td><a href="../../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../../requirements/astm/f3411/v22a.md">NET0260,Table1,6</a></td>
<td>Implemented</td>
Expand Down
12 changes: 11 additions & 1 deletion monitoring/uss_qualifier/suites/uspace/network_identification.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<th><a href="../README.md#checked-in">Checked in</a></th>
</tr>
<tr>
<td rowspan="100" style="vertical-align:top;"><a href="../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td rowspan="102" style="vertical-align:top;"><a href="../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td><a href="../../requirements/astm/f3411/v22a.md">DSS0010</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/dss/token_validation.md">ASTM NetRID DSS: Token Validation</a></td>
Expand Down Expand Up @@ -347,6 +347,16 @@
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,3</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,4</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,6</a></td>
<td>Implemented</td>
Expand Down
12 changes: 11 additions & 1 deletion monitoring/uss_qualifier/suites/uspace/required_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<th><a href="../README.md#checked-in">Checked in</a></th>
</tr>
<tr>
<td rowspan="100" style="vertical-align:top;"><a href="../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td rowspan="102" style="vertical-align:top;"><a href="../../requirements/astm/f3411/v22a.md">astm<br>.f3411<br>.v22a</a></td>
<td><a href="../../requirements/astm/f3411/v22a.md">DSS0010</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/dss/token_validation.md">ASTM NetRID DSS: Token Validation</a></td>
Expand Down Expand Up @@ -348,6 +348,16 @@
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,3</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,4</a></td>
<td>Implemented</td>
<td><a href="../../scenarios/astm/netrid/v22a/nominal_behavior.md">ASTM NetRID nominal behavior</a></td>
</tr>
<tr>
<td><a href="../../requirements/astm/f3411/v22a.md">NET0260,Table1,6</a></td>
<td>Implemented</td>
Expand Down

0 comments on commit f82aa54

Please sign in to comment.