* change picture to word * change picture to word * SHOW FULL TABLES WHERE Table_type != VIEW sql can not execute * change license description
93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
// Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved
|
|
|
|
// 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 "util/count_down_latch.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace palo {
|
|
|
|
class CountDownLatchTest : public testing::Test {
|
|
public:
|
|
CountDownLatchTest() {
|
|
}
|
|
|
|
protected:
|
|
virtual void SetUp() {
|
|
}
|
|
virtual void TearDown() {
|
|
}
|
|
};
|
|
|
|
struct WokerCtx {
|
|
WokerCtx(int count_param) :
|
|
latch(CountDownLatch(count_param)),
|
|
u_sleep_time(0),
|
|
count(count_param) {
|
|
}
|
|
|
|
~WokerCtx() {
|
|
}
|
|
|
|
CountDownLatch latch;
|
|
int u_sleep_time;
|
|
int count;
|
|
};
|
|
|
|
void* worker(void* param) {
|
|
std::shared_ptr<WokerCtx> ctx = *(std::shared_ptr<WokerCtx>*)param;
|
|
usleep(ctx->u_sleep_time);
|
|
ctx->latch.count_down(ctx->count);
|
|
return nullptr;
|
|
}
|
|
|
|
TEST_F(CountDownLatchTest, Normal) {
|
|
std::shared_ptr<WokerCtx> ctx(new WokerCtx(10));
|
|
ctx->u_sleep_time = 100;
|
|
|
|
pthread_t id;
|
|
pthread_create(&id, nullptr, worker, &ctx);
|
|
ctx->latch.await();
|
|
pthread_join(id, nullptr);
|
|
}
|
|
|
|
TEST_F(CountDownLatchTest, Timed) {
|
|
std::shared_ptr<WokerCtx> ctx(new WokerCtx(10));
|
|
ctx->u_sleep_time = 100;
|
|
|
|
pthread_t id;
|
|
pthread_create(&id, nullptr, worker, &ctx);
|
|
ASSERT_EQ(0, ctx->latch.await(1000));
|
|
pthread_join(id, nullptr);
|
|
}
|
|
|
|
TEST_F(CountDownLatchTest, Timeout) {
|
|
std::shared_ptr<WokerCtx> ctx(new WokerCtx(10));
|
|
ctx->u_sleep_time = 2000000;
|
|
|
|
pthread_t id;
|
|
pthread_create(&id, nullptr, worker, &ctx);
|
|
ASSERT_EQ(-1, ctx->latch.await(1000));
|
|
pthread_join(id, nullptr);
|
|
}
|
|
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|