interrupt_test.cc 1.9 KB
Newer Older
Z
zhunaipan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
/**
 * 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 "dataset/util/de_error.h"
#include "utils/log_adapter.h"
#include "dataset/util/services.h"
#include "dataset/util/intrp_service.h"
#include "dataset/util/task_manager.h"
#include "dataset/util/queue.h"

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();
J
Jesse Lee 已提交
51
  vg_.join_all(Task::WaitFlag::kNonBlocking);
Z
zhunaipan 已提交
52 53 54 55 56
}

TEST_F(MindDataTestIntrpService, Test2) {
  MS_LOG(INFO) << "Test Semaphore";
  Status rc;
57 58 59
  WaitPost wp;
  rc = wp.Register(&vg_);
  EXPECT_TRUE(rc.IsOk());
Z
zhunaipan 已提交
60 61
  vg_.CreateAsyncTask("Test1", [&]() -> Status {
    TaskManager::FindMe()->Post();
62
      Status rc = wp.Wait();
Z
zhunaipan 已提交
63 64 65 66
      EXPECT_TRUE(rc.IsInterrupted());
      return rc;
  });
  vg_.GetIntrpService()->InterruptAll();
J
Jesse Lee 已提交
67 68
  vg_.join_all(Task::WaitFlag::kNonBlocking);
}