]> git.basschouten.com Git - openhab-addons.git/blob
e6824fe93b14fee51abfaa62ac4da252fcb0cf73
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.lcn.internal.subhandler;
14
15 import static org.mockito.Mockito.*;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.BeforeEach;
19 import org.junit.jupiter.api.Test;
20 import org.openhab.binding.lcn.internal.common.LcnChannelGroup;
21
22 /**
23  * Test class.
24  *
25  * @author Andre Jendrysseck - Initial contribution
26  */
27 @NonNullByDefault
28 public class LcnModuleCodeSubHandlerTest extends AbstractTestLcnModuleSubHandler {
29
30     @Override
31     @BeforeEach
32     public void setUp() {
33         super.setUp();
34     }
35
36     @Test
37     public void testHexFingerprint() {
38         tryParseAllHandlers("=M000005.ZFABCDEF");
39         verify(handler).triggerChannel(LcnChannelGroup.CODE, "fingerprint", "ABCDEF");
40         verify(handler).triggerChannel(any(), any(), any());
41     }
42
43     @Test
44     public void testDecFingerprint() {
45         tryParseAllHandlers("=M000005.ZF255255255");
46         verify(handler).triggerChannel(LcnChannelGroup.CODE, "fingerprint", "FFFFFF");
47         verify(handler).triggerChannel(any(), any(), any());
48     }
49 }