Skip to content

Commit

Permalink
Update test cases for matter-lock
Browse files Browse the repository at this point in the history
Signed-off-by: Hunsup Jung <[email protected]>
  • Loading branch information
HunsupJung committed Dec 20, 2024
1 parent 3c60f45 commit aa47454
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local NEW_MATTER_LOCK_PRODUCTS = {
{0x115f, 0x2802}, -- AQARA, U200
{0x115f, 0x2801}, -- AQARA, U300
{0x147F, 0x0001}, -- U-tec
{0x10E1, 0x2002} -- VDA
{0x10E1, 0x2002} -- VDA
}

local PROFILE_BASE_NAME = "__profile_base_name"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
-- Copyright 2023 SmartThings
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.

local test = require "integration_test"
test.add_package_capability("lockAlarm.yml")
local clusters = require "st.matter.clusters"
local t_utils = require "integration_test.utils"
local uint32 = require "st.matter.data_types.Uint32"

local DoorLock = clusters.DoorLock

local mock_device = test.mock_device.build_test_matter_device({
profile = t_utils.get_profile_definition("lock-user-pin.yml"),
manufacturer_info = {
vendor_id = 0x147F,
product_id = 0x0001,
},
endpoints = {
{
endpoint_id = 0,
clusters = {
{ cluster_id = clusters.Basic.ID, cluster_type = "SERVER" },
},
device_types = {
{ device_type_id = 0x0016, device_type_revision = 1 } -- RootNode
}
},
{
endpoint_id = 1,
clusters = {
{
cluster_id = DoorLock.ID,
cluster_type = "SERVER",
cluster_revision = 1,
feature_map = 0x0181, -- PIN & USR & COTA
},
{
cluster_id = clusters.PowerSource.ID,
cluster_type = "SERVER",
feature_map = 10
},
},
device_types = {
{ device_type_id = 0x000A, device_type_revision = 1 } -- Door Lock
}
}
}
})

local function test_init()
local subscribe_request = DoorLock.attributes.LockState:subscribe(mock_device)
subscribe_request:merge(DoorLock.attributes.OperatingMode:subscribe(mock_device))
subscribe_request:merge(DoorLock.attributes.NumberOfTotalUsersSupported:subscribe(mock_device))
subscribe_request:merge(DoorLock.attributes.NumberOfPINUsersSupported:subscribe(mock_device))
subscribe_request:merge(DoorLock.attributes.MaxPINCodeLength:subscribe(mock_device))
subscribe_request:merge(DoorLock.attributes.MinPINCodeLength:subscribe(mock_device))
subscribe_request:merge(DoorLock.attributes.RequirePINforRemoteOperation:subscribe(mock_device))
subscribe_request:merge(DoorLock.events.LockOperation:subscribe(mock_device))
subscribe_request:merge(DoorLock.events.DoorLockAlarm:subscribe(mock_device))
subscribe_request:merge(DoorLock.events.LockUserChange:subscribe(mock_device))
test.socket["matter"]:__expect_send({mock_device.id, subscribe_request})
test.mock_device.add_test_device(mock_device)
end
test.set_test_init_function(test_init)

test.register_coroutine_test(
"Test profile change when battery percent remaining attribute (attribute ID 12) is available",
function()
test.socket.device_lifecycle:__queue_receive({ mock_device.id, "doConfigure" })
mock_device:expect_metadata_update({ provisioning_state = "PROVISIONED" })
test.socket.matter:__expect_send(
{
mock_device.id,
clusters.PowerSource.attributes.AttributeList:read()
}
)
test.wait_for_events()
test.socket.matter:__queue_receive(
{
mock_device.id,
clusters.PowerSource.attributes.AttributeList:build_test_report_data(mock_device, 1,
{
uint32(0),
uint32(1),
uint32(2),
uint32(12),
uint32(31),
uint32(65528),
uint32(65529),
uint32(65531),
uint32(65532),
uint32(65533),
})
}
)
mock_device:expect_metadata_update({ profile = "lock-user-pin-battery" })
end
)

test.register_coroutine_test(
"Test profile change when battery percent remaining attribute is not available",
function()
test.socket.device_lifecycle:__queue_receive({ mock_device.id, "doConfigure" })
mock_device:expect_metadata_update({ provisioning_state = "PROVISIONED" })
test.socket.matter:__expect_send(
{
mock_device.id,
clusters.PowerSource.attributes.AttributeList:read()
}
)
test.wait_for_events()
test.socket.matter:__queue_receive(
{
mock_device.id,
clusters.PowerSource.attributes.AttributeList:build_test_report_data(mock_device, 1,
{
uint32(0),
uint32(1),
uint32(2),
uint32(31),
uint32(65528),
uint32(65529),
uint32(65531),
uint32(65532),
uint32(65533),
})
}
)
mock_device:expect_metadata_update({ profile = "lock-user-pin-batteryLevel" })
end
)

test.run_registered_tests()

0 comments on commit aa47454

Please sign in to comment.