From bc472821fe8aac8fca089082496f5b7d067ffae8 Mon Sep 17 00:00:00 2001 From: Jakub Pawlowski Date: Fri, 27 May 2016 17:06:39 -0700 Subject: Remove currently unused peer device module and tests The module is currently not used and it is currently not obvious if this should be a module in the first place. Filed separate bug (#29057391) to re-visit the concept in a future refactor, but removing unused code for now. Bug: 29000421 Change-Id: Ie369574e62281fa1d7c3284c86c4509de558fa15 --- device/test/classic/peer_test.cc | 86 ---------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 device/test/classic/peer_test.cc (limited to 'device/test') diff --git a/device/test/classic/peer_test.cc b/device/test/classic/peer_test.cc deleted file mode 100644 index 9f8b9ac4b..000000000 --- a/device/test/classic/peer_test.cc +++ /dev/null @@ -1,86 +0,0 @@ -/****************************************************************************** - * - * Copyright (C) 2014 Google, Inc. - * - * 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. - * - ******************************************************************************/ - -#include - -#include "osi/test/AllocationTestHarness.h" - -extern "C" { -#include "btcore/include/bdaddr.h" -#include "btcore/include/module.h" -#include "device/include/classic/peer.h" - -extern const module_t classic_peer_module; -} - -class ClassicPeerTest : public AllocationTestHarness { - protected: - virtual void SetUp() { - AllocationTestHarness::SetUp(); - - module_management_start(); - module_init(&classic_peer_module); - } - - virtual void TearDown() { - module_clean_up(&classic_peer_module); - module_management_stop(); - - AllocationTestHarness::TearDown(); - } -}; - -TEST_F(ClassicPeerTest, test_basic_get) { - bt_bdaddr_t test_address; - string_to_bdaddr("12:34:56:78:9A:BC", &test_address); - - classic_peer_t *peer = classic_peer_by_address(&test_address); - - EXPECT_TRUE(peer != NULL); - // The stored address should be a copy (different memory address) - EXPECT_NE(&test_address, classic_peer_get_address(peer)); - EXPECT_TRUE(bdaddr_equals(&test_address, classic_peer_get_address(peer))); -} - -TEST_F(ClassicPeerTest, test_multi_get_are_same) { - bt_bdaddr_t test_address; - string_to_bdaddr("12:34:56:78:9A:BC", &test_address); - - classic_peer_t *peer = classic_peer_by_address(&test_address); - classic_peer_t *peer_again = classic_peer_by_address(&test_address); - - EXPECT_TRUE(peer != NULL); - EXPECT_TRUE(peer_again != NULL); - EXPECT_EQ(peer, peer_again); -} - -TEST_F(ClassicPeerTest, test_multi_get_different) { - bt_bdaddr_t test_address0; - bt_bdaddr_t test_address1; - string_to_bdaddr("12:34:56:78:9A:BC", &test_address0); - string_to_bdaddr("42:42:42:42:42:42", &test_address1); - - classic_peer_t *peer0 = classic_peer_by_address(&test_address0); - classic_peer_t *peer1 = classic_peer_by_address(&test_address1); - - EXPECT_TRUE(peer0 != NULL); - EXPECT_TRUE(peer1 != NULL); - EXPECT_TRUE(bdaddr_equals(&test_address0, classic_peer_get_address(peer0))); - EXPECT_TRUE(bdaddr_equals(&test_address1, classic_peer_get_address(peer1))); -} - -- cgit v1.2.3