-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and WIP harness for CHIP tests
The CHIP test harness is not yet complete but it's getting pretty close. Will continue development as needed as we migrate away from the "IntegrationTest" approach and rely more on CHIP tests.
- Loading branch information
Showing
49 changed files
with
904 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { AllClustersTestInstance } from "../src/AllClustersTestInstance.js"; | ||
import { App } from "./support.js"; | ||
|
||
describe("AccessChecker", () => { | ||
Chip.python(App(AllClustersTestInstance), "TC_AccessChecker"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { AllClustersTestInstance } from "../src/AllClustersTestInstance.js"; | ||
import { App } from "./support.js"; | ||
|
||
describe("ACE", () => { | ||
Chip.python(App(AllClustersTestInstance), "TC_ACE_1_2"); | ||
Chip.python(App(AllClustersTestInstance), "TC_ACE_1_3"); | ||
Chip.python(App(AllClustersTestInstance), "TC_ACE_1_4"); | ||
Chip.python(App(AllClustersTestInstance), "TC_ACE_1_5"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { AllClustersTestInstance } from "../src/AllClustersTestInstance.js"; | ||
import { App } from "./support.js"; | ||
|
||
describe("ACL", () => { | ||
Chip.python(App(AllClustersTestInstance), "TC_ACL_2_2"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { AllClustersTestInstance } from "../src/AllClustersTestInstance.js"; | ||
import { App } from "./support.js"; | ||
|
||
describe("CADMIN", () => { | ||
Chip.python(App(AllClustersTestInstance), "TC_CADMIN_1_9"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { AllClustersTestInstance } from "../src/AllClustersTestInstance.js"; | ||
import { App } from "./support.js"; | ||
|
||
describe("CGEN", () => { | ||
Chip.python(App(AllClustersTestInstance), "TC_CGEN_2_4"); | ||
}); |
Oops, something went wrong.