2020-03-27 14:49:12 +08:00
|
|
|
/**
|
|
|
|
* Copyright 2019 Huawei Technologies 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 "common/common.h"
|
|
|
|
#include "utils/log_adapter.h"
|
2020-07-14 12:56:33 +08:00
|
|
|
#include "minddata/dataset/util/services.h"
|
|
|
|
#include "minddata/dataset/util/intrp_service.h"
|
|
|
|
#include "minddata/dataset/util/task_manager.h"
|
|
|
|
#include "minddata/dataset/util/queue.h"
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
using namespace mindspore::dataset;
|
|
|
|
using mindspore::MsLogLevel::INFO;
|
|
|
|
using mindspore::ExceptionType::NoExceptionType;
|
|
|
|
using mindspore::LogStream;
|
|
|
|
|
|
|
|
class MindDataTestIntrpService : public UT::Common {
|
|
|
|
public:
|
|
|
|
MindDataTestIntrpService() {}
|
|
|
|
|
|
|
|
void SetUp() {}
|
|
|
|
|
|
|
|
TaskGroup vg_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(MindDataTestIntrpService, Test1) {
|
|
|
|
Status rc;
|
|
|
|
Queue<int> q(3);
|
|
|
|
q.Register(&vg_);
|
|
|
|
vg_.CreateAsyncTask("Test1", [&]() -> Status {
|
|
|
|
TaskManager::FindMe()->Post();
|
|
|
|
int v;
|
|
|
|
Status rc;
|
|
|
|
rc = q.PopFront(&v);
|
|
|
|
EXPECT_TRUE(rc.IsInterrupted());
|
|
|
|
return rc;
|
|
|
|
});
|
|
|
|
vg_.GetIntrpService()->InterruptAll();
|
2020-05-26 03:14:49 +08:00
|
|
|
vg_.join_all(Task::WaitFlag::kNonBlocking);
|
2020-03-27 14:49:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(MindDataTestIntrpService, Test2) {
|
|
|
|
MS_LOG(INFO) << "Test Semaphore";
|
|
|
|
Status rc;
|
2020-04-29 03:19:03 +08:00
|
|
|
WaitPost wp;
|
|
|
|
rc = wp.Register(&vg_);
|
|
|
|
EXPECT_TRUE(rc.IsOk());
|
2020-03-27 14:49:12 +08:00
|
|
|
vg_.CreateAsyncTask("Test1", [&]() -> Status {
|
|
|
|
TaskManager::FindMe()->Post();
|
2020-04-29 03:19:03 +08:00
|
|
|
Status rc = wp.Wait();
|
2020-03-27 14:49:12 +08:00
|
|
|
EXPECT_TRUE(rc.IsInterrupted());
|
|
|
|
return rc;
|
|
|
|
});
|
|
|
|
vg_.GetIntrpService()->InterruptAll();
|
2020-05-26 03:14:49 +08:00
|
|
|
vg_.join_all(Task::WaitFlag::kNonBlocking);
|
|
|
|
}
|