* Copyright (c) 2023 Huawei Device Co., Ltd.
* 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 <gtest/gtest.h>
#include <atomic>
#include <chrono>
#include <cstddef>
#include <cstdint>
#include <memory>
#include <thread>
#include <tuple>
#include <unordered_map>
#include <vector>
#include "common.h"
#include "gmock/gmock.h"
#include "log.h"
#include "request_preload.h"
using namespace testing::ext;
using namespace OHOS::Request;
static std::string TEST_URL_0 = "https://www.gitee.com/tiga-ultraman/downloadTests/releases/download/v1.01/"
"test.txt";
static std::string TEST_URL_1 = "https://www.gitee.com/fqwert/aaaaaa";
constexpr size_t SLEEP_INTERVAL = 1000;
constexpr size_t ABNORMAL_INTERVAL = 24;
class PreloadAbnormal : public testing::Test {
public:
void SetUp();
};
void PreloadAbnormal::SetUp(void)
{
testing::UnitTest *test = testing::UnitTest::GetInstance();
ASSERT_NE(test, nullptr);
const testing::TestInfo *testInfo = test->current_test_info();
ASSERT_NE(testInfo, nullptr);
string testCaseName = string(testInfo->name());
REQUEST_HILOGI("[SetUp] %{public}s start", testCaseName.c_str());
GTEST_LOG_(INFO) << testCaseName.append(" start");
}
* @tc.name: NullptrTest_1
* @tc.desc: Test nullptr callback handling in PreloadCallback
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with all callbacks set to nullptr
* 2. Call Preload::load with nullptr callback
* 3. Verify handle is not nullptr
* 4. Call Cancel on the handle
* @tc.expect: Handle is valid and Cancel operation completes without crash
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, NullptrTest_1, TestSize.Level1)
{
auto callback = PreloadCallback{
.OnSuccess = nullptr,
.OnCancel = nullptr,
.OnFail = nullptr,
.OnProgress = nullptr,
};
auto handle = Preload::GetInstance()->load(TEST_URL_0, std::make_unique<PreloadCallback>(callback));
EXPECT_NE(handle, nullptr);
handle->Cancel();
}
* @tc.name: NullptrTest
* @tc.desc: Test nullptr callback handling in PreloadCallback with invalid UTF-8 URL
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with all callbacks set to nullptr
* 2. Call Preload::load with invalid UTF-8 URL and nullptr callback
* 3. Verify handle is nullptr due to invalid input
* 4. Skip Cancel operation when handle is nullptr
* @tc.expect: Handle is nullptr due to invalid UTF-8 URL input
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, NullptrTest_2, TestSize.Level1)
{
auto callback = PreloadCallback{
.OnSuccess = nullptr,
.OnCancel = nullptr,
.OnFail = nullptr,
.OnProgress = nullptr,
};
std::string invalidUtf8Url = "Test String Invalid \xFF\xFE";
auto handle = Preload::GetInstance()->load(invalidUtf8Url, std::make_unique<PreloadCallback>(callback));
EXPECT_EQ(handle, nullptr);
std::unique_ptr<PreloadOptions> options = std::make_unique<PreloadOptions>();
options->headers.push_back(std::make_tuple("Test String Invalid \xFF\xFE", "Test String Invalid \xFF\xFE"));
auto handle_1 = Preload::GetInstance()->load(invalidUtf8Url,
std::make_unique<PreloadCallback>(callback),
std::move(options));
EXPECT_EQ(handle_1, nullptr);
}
* @tc.name: SuccessBlockCallbackTest
* @tc.desc: Test blocked OnSuccess callback does not affect other concurrent callbacks
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with blocking OnSuccess callback
* 2. Load URL with blocking callback
* 3. Load same URL with normal test callback
* 4. Wait for completion and verify all callbacks triggered correctly
* @tc.expect: Normal callbacks complete successfully despite blocked callback
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, SuccessBlockCallbackTest, TestSize.Level1)
{
auto url = TEST_URL_0;
Preload::GetInstance()->Remove(url);
auto abnormal_callback = PreloadCallback{
.OnSuccess =
[](const std::shared_ptr<Data> &&data, const std::string &taskId) {
std::this_thread::sleep_for(std::chrono::hours(ABNORMAL_INTERVAL));
},
};
auto handle = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(abnormal_callback));
TestCallback test;
auto &[flagS, flagF, flagC, flagP, callback] = test;
Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(callback));
size_t counter = 10;
while ((!handle->IsFinish() || !(flagC->load() || flagF->load() || flagS->load())) && counter-- > 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
}
EXPECT_FALSE(flagF->load());
EXPECT_FALSE(flagC->load());
EXPECT_TRUE(flagP->load());
EXPECT_TRUE(flagS->load());
EXPECT_EQ(handle->GetState(), PreloadState::SUCCESS);
Preload::GetInstance()->Remove(url);
}
* @tc.name: FailBlockCallbackTest
* @tc.desc: Test blocked OnFail callback does not affect other concurrent callbacks
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with blocking OnFail callback
* 2. Load invalid URL with blocking callback
* 3. Load same URL with normal test callback
* 4. Wait for completion and verify all callbacks triggered correctly
* @tc.expect: Normal callbacks complete successfully despite blocked callback
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, FailBlockCallbackTest, TestSize.Level1)
{
auto url = TEST_URL_1;
Preload::GetInstance()->Remove(url);
auto abnormal_callback = PreloadCallback{
.OnFail =
[](const PreloadError &error, const std::string &taskId) {
std::this_thread::sleep_for(std::chrono::hours(ABNORMAL_INTERVAL));
},
};
auto handle = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(abnormal_callback));
TestCallback test;
auto &[flagS, flagF, flagC, flagP, callback] = test;
Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(callback));
size_t counter = 10;
while ((!handle->IsFinish() || !(flagC->load() || flagF->load() || flagS->load())) && counter-- > 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
}
EXPECT_TRUE(flagF->load());
EXPECT_TRUE(flagP->load());
EXPECT_FALSE(flagC->load());
EXPECT_FALSE(flagS->load());
EXPECT_EQ(handle->GetState(), PreloadState::FAIL);
Preload::GetInstance()->Remove(url);
}
* @tc.name: CancelBlockCallbackTest
* @tc.desc: Test blocked OnCancel callback does not affect other concurrent callbacks
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with blocking OnCancel callback
* 2. Load URL with blocking callback
* 3. Load same URL with normal test callback
* 4. Cancel both handles and verify callbacks triggered correctly
* @tc.expect: Normal callbacks complete successfully despite blocked callback
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, CancelBlockCallbackTest, TestSize.Level1)
{
auto url = TEST_URL_1;
Preload::GetInstance()->Remove(url);
auto abnormal_callback = PreloadCallback{
.OnCancel = []() { std::this_thread::sleep_for(std::chrono::hours(ABNORMAL_INTERVAL)); },
};
auto handle = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(abnormal_callback));
TestCallback test;
auto &[flagS, flagF, flagC, flagP, callback] = test;
auto handle_1 = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(callback));
handle->Cancel();
handle_1->Cancel();
size_t counter = 10;
while ((!handle->IsFinish() || !(flagC->load() || flagF->load() || flagS->load())) && counter-- > 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
}
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
EXPECT_FALSE(flagF->load());
EXPECT_TRUE(flagC->load());
EXPECT_FALSE(flagP->load());
EXPECT_FALSE(flagS->load());
EXPECT_EQ(handle->GetState(), PreloadState::CANCEL);
Preload::GetInstance()->Remove(url);
}
* @tc.name: ProgressBlockCallbackTest
* @tc.desc: Test blocked OnProgress callback does not affect other concurrent callbacks
* @tc.precon: NA
* @tc.step: 1. Create PreloadCallback with blocking OnProgress callback
* 2. Load URL with blocking callback
* 3. Load same URL with normal test callback
* 4. Wait for completion and verify all callbacks triggered correctly
* @tc.expect: Normal callbacks complete successfully despite blocked callback
* @tc.type: FUNC
* @tc.require: issueNumber
* @tc.level: Level 1
*/
HWTEST_F(PreloadAbnormal, ProgressBlockCallbackTest, TestSize.Level1)
{
auto url = TEST_URL_0;
Preload::GetInstance()->Remove(url);
auto abnormal_callback = PreloadCallback{
.OnProgress = [](uint64_t current,
uint64_t total) { std::this_thread::sleep_for(std::chrono::hours(ABNORMAL_INTERVAL)); },
};
auto handle = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(abnormal_callback));
TestCallback test;
auto &[flagS, flagF, flagC, flagP, callback] = test;
auto handle_1 = Preload::GetInstance()->load(url, std::make_unique<PreloadCallback>(callback));
size_t counter = 10;
while ((!handle->IsFinish() || !(flagC->load() || flagF->load() || flagS->load())) && counter-- > 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
}
std::this_thread::sleep_for(std::chrono::milliseconds(SLEEP_INTERVAL));
EXPECT_FALSE(flagF->load());
EXPECT_FALSE(flagC->load());
EXPECT_TRUE(flagP->load());
EXPECT_TRUE(flagS->load());
EXPECT_EQ(handle->GetState(), PreloadState::SUCCESS);
Preload::GetInstance()->Remove(url);
}