Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The following test suites are currently supported.
| - | BCP-002-02 Asset Distinguishing Information | X | | | Included in IS-04 Node API suite |
| BCP-003-01 | BCP-003-01 Secure Communication | X | X | | See [Testing TLS](docs/2.2.%20Usage%20-%20Testing%20BCP-003-01%20TLS.md) |
| - | BCP-003-02 Authorization | X | X | | See [Testing Authorization](docs/2.3.%20Usage%20-%20Testing%20IS-10%20Authorization.md) |
| - | BCP-004-01 Receiver Capabilities | X | | | Included in IS-04 Node API and IS-05 Interaction with IS-04 suites |
| BCP-004-01 | BCP-004-01 Receiver Capabilities | X | | | Also included in IS-05 Interaction with IS-04 suite |
| BCP-006-01-01 | BCP-006-01 NMOS With JPEG XS | X | | | |
| BCP-006-01-02 | BCP-006-01 Controller | | | X | See [Testing Controllers](docs/2.8.%20Usage%20-%20Testing%20Controllers.md) |

Expand Down
22 changes: 16 additions & 6 deletions nmostesting/NMOSTesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
from .suites import IS0902Test
# from .suites import IS1001Test
from .suites import BCP00301Test
from .suites import BCP00401Test
from .suites import BCP0060101Test
from .suites import BCP0060102Test

Expand Down Expand Up @@ -183,12 +184,6 @@
}, {
"spec_key": "bcp-002-02",
"api_key": "asset"
}, {
"spec_key": "bcp-004-01",
"api_key": "receiver-caps"
}, {
"spec_key": "nmos-parameter-registers",
"api_key": "caps-register"
}],
"class": IS0401Test.IS0401Test
},
Expand Down Expand Up @@ -348,6 +343,21 @@
}],
"class": BCP00301Test.BCP00301Test
},
"BCP-004-01": {
"name": "BCP-004-01 Receiver Capabilities",
"specs": [{
"spec_key": "is-04",
"api_key": "node"
}],
"extra_specs": [{
"spec_key": "bcp-004-01",
"api_key": "receiver-caps"
}, {
"spec_key": "nmos-parameter-registers",
"api_key": "caps-register"
}],
"class": BCP00401Test.BCP00401Test
},
"BCP-006-01-01": {
"name": "BCP-006-01 NMOS With JPEG XS",
"specs": [{
Expand Down
Loading
Loading