Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / resource / csdk / security / unittest / directpairingtest.cpp
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #include "gtest/gtest.h"
22 #include "directpairing.h"
23
24 using namespace std;
25
26 #define TAG  "DIRECTPAIRING-UT"
27
28 static OCDirectPairingDev_t peer;
29 static OicSecPrm_t pmSel;
30 static char pinNumber;
31
32 static void ResultCB(OCDirectPairingDev_t *UNUSED1, OCStackResult UNUSED2)
33 {
34     //dummy callback
35     (void) UNUSED1;
36     (void) UNUSED2;
37 }
38
39 TEST(DPDirectPairingTest, NullPeer)
40 {
41     EXPECT_EQ(OC_STACK_INVALID_PARAM, DPDirectPairing(NULL, pmSel, &pinNumber, &ResultCB));
42 }
43
44 TEST(DPDirectPairingTest, NullPinNumber)
45 {
46     EXPECT_EQ(OC_STACK_INVALID_PARAM, DPDirectPairing(&peer, pmSel, NULL, &ResultCB));
47 }
48