-
Notifications
You must be signed in to change notification settings - Fork 27
Description
@BenjaminPelletier Here is a potential issue we encountered and discussed with @barroco
As we are implementing the Remote ID automated testing interfaces, we are having issue managing potential duplicate flight IDs across service providers.
More specifically, the observation harness returns through its endpoint GET /display_data/{id}
the details of a specific flight (identified by {id}
).
To retrieve those details, the observation harness queries the DP under test for the details of the flight.
However, because
- the DP needs to know which SP to query for the flight details, and
- we cannot map the flight IDs to its corresponding SP because there is no guarantee of ID uniqueness across SPs;
we seem to encounter an issue.
Are we missing something? Was this scenario covered in the conception of the RID automated testing interfaces?
It looks like it would make sense that the observation harness through its endpoint GET /display_data
returns which service area or SP the flight belongs to so that it can then be fed to the endpoint GET /display_data/{id}
. At least that would make our life much easier!
Thanks a lot.