aboutsummaryrefslogtreecommitdiff
path: root/chpp/test/app_test_base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chpp/test/app_test_base.cpp')
-rw-r--r--chpp/test/app_test_base.cpp117
1 files changed, 0 insertions, 117 deletions
diff --git a/chpp/test/app_test_base.cpp b/chpp/test/app_test_base.cpp
deleted file mode 100644
index 3c4ed83f..00000000
--- a/chpp/test/app_test_base.cpp
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * 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 "app_test_base.h"
-
-#include <gtest/gtest.h>
-
-#include <stdbool.h>
-#include <stddef.h>
-#include <stdint.h>
-#include <string.h>
-#include <thread>
-
-#include "chpp/app.h"
-#include "chpp/clients/discovery.h"
-#include "chpp/macros.h"
-#include "chpp/platform/utils.h"
-#include "chpp/transport.h"
-
-namespace chpp {
-namespace {
-
-void *workThread(void *arg) {
- ChppTransportState *context = static_cast<ChppTransportState *>(arg);
- pthread_setname_np(pthread_self(), context->linkParams.workThreadName);
-
- chppWorkThreadStart(context);
-
- return nullptr;
-}
-
-} // anonymous namespace
-
-void AppTestBase::SetUp() {
- chppClearTotalAllocBytes();
- memset(&mClientTransportContext.linkParams, 0,
- sizeof(mClientTransportContext.linkParams));
- memset(&mServiceTransportContext.linkParams, 0,
- sizeof(mServiceTransportContext.linkParams));
- // The linkSendThread in the link layer is a link "to" the remote end.
- mServiceTransportContext.linkParams.linkThreadName = "Link to client";
- mServiceTransportContext.linkParams.workThreadName = "Service work";
- mClientTransportContext.linkParams.linkThreadName = "Link to service";
- mClientTransportContext.linkParams.workThreadName = "Client work";
-
- mClientTransportContext.linkParams.remoteTransportContext =
- &mServiceTransportContext;
- mServiceTransportContext.linkParams.remoteTransportContext =
- &mClientTransportContext;
-
- struct ChppClientServiceSet set;
- memset(&set, 0, sizeof(set));
- set.wifiClient = 1;
- set.gnssClient = 1;
- set.wwanClient = 1;
- set.loopbackClient = 1;
-
- chppTransportInit(&mClientTransportContext, &mClientAppContext);
- chppAppInitWithClientServiceSet(&mClientAppContext, &mClientTransportContext,
- set);
- pthread_create(&mClientWorkThread, NULL, workThread,
- &mClientTransportContext);
-
- // Wait a bit to emulate the scenario where the remote is not yet up
- std::this_thread::sleep_for(std::chrono::milliseconds(450));
-
- memset(&set, 0, sizeof(set));
- set.wifiService = 1;
- set.gnssService = 1;
- set.wwanService = 1;
-
- chppTransportInit(&mServiceTransportContext, &mServiceAppContext);
- chppAppInitWithClientServiceSet(&mServiceAppContext,
- &mServiceTransportContext, set);
- pthread_create(&mServiceWorkThread, NULL, workThread,
- &mServiceTransportContext);
-
- mClientTransportContext.linkParams.linkEstablished = true;
- mServiceTransportContext.linkParams.linkEstablished = true;
-
- constexpr uint64_t kResetWaitTimeMs = 1500;
- chppTransportWaitForResetComplete(&mClientTransportContext, kResetWaitTimeMs);
-
- constexpr uint64_t kDiscoveryWaitTimeMs = 5000;
- chppWaitForDiscoveryComplete(&mClientAppContext, kDiscoveryWaitTimeMs);
-}
-
-void AppTestBase::TearDown() {
- // Stop the work threads first to avoid any transient activity.
- chppWorkThreadStop(&mClientTransportContext);
- chppWorkThreadStop(&mServiceTransportContext);
- pthread_join(mClientWorkThread, NULL);
- pthread_join(mServiceWorkThread, NULL);
-
- chppAppDeinit(&mClientAppContext);
- chppTransportDeinit(&mClientTransportContext);
-
- chppAppDeinit(&mServiceAppContext);
- chppTransportDeinit(&mServiceTransportContext);
-
- EXPECT_EQ(chppGetTotalAllocBytes(), 0);
-}
-
-} // namespace chpp