Files
pytorch/caffe2/utils/simple_queue_test.cc
Nikita Shulga a9b0a921d5 Disable avoid-non-const-global-variables lint check (#62008)
Summary:
As GoogleTest `TEST` macro is non-compliant with it as well as `DEFINE_DISPATCH`

All changes but the ones to `.clang-tidy` are generated using following script:
```
for i in `find . -type f -iname "*.c*" -or -iname "*.h"|xargs grep cppcoreguidelines-avoid-non-const-global-variables|cut -f1 -d:|sort|uniq`;  do sed -i "/\/\/ NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)/d" $i; done
```

Pull Request resolved: https://github.com/pytorch/pytorch/pull/62008

Reviewed By: driazati, r-barnes

Differential Revision: D29838584

Pulled By: malfet

fbshipit-source-id: 1b2f8602c945bd4ce50a9bfdd204755556e31d13
2021-07-22 18:04:40 -07:00

77 lines
2.0 KiB
C++

#include <thread> // NOLINT
#include "caffe2/utils/simple_queue.h"
#include <gtest/gtest.h>
namespace caffe2 {
static std::unique_ptr<SimpleQueue<int> > gQueue;
static void ConsumerFunction(int thread_idx) {
// NOLINTNEXTLINE(cppcoreguidelines-init-variables)
int value;
while (true) {
if (!gQueue->Pop(&value)) return;
VLOG(1) << "Emitting " << value << " from thread " << thread_idx;
}
}
static void ProducerFunction(int thread_idx, int start, int count) {
for (int i = 0; i < count; ++i) {
VLOG(1) << "Pushing " << i + start << " from thread " << thread_idx;
gQueue->Push(i + start);
}
}
TEST(SimpleQueueTest, SingleProducerSingleConsumer) {
// NOLINTNEXTLINE(modernize-make-unique)
gQueue.reset(new SimpleQueue<int>());
std::thread consumer(ConsumerFunction, 0);
for (int i = 0; i < 10; ++i) {
gQueue->Push(i);
}
gQueue->NoMoreJobs();
consumer.join();
}
TEST(SimpleQueueTest, SingleProducerDoubleConsumer) {
// NOLINTNEXTLINE(modernize-make-unique)
gQueue.reset(new SimpleQueue<int>());
std::thread consumer0(ConsumerFunction, 0);
std::thread consumer1(ConsumerFunction, 1);
for (int i = 0; i < 10; ++i) {
gQueue->Push(i);
}
gQueue->NoMoreJobs();
consumer0.join();
consumer1.join();
}
TEST(SimpleQueueTest, DoubleProducerDoubleConsumer) {
// NOLINTNEXTLINE(modernize-make-unique)
gQueue.reset(new SimpleQueue<int>());
std::thread producer0(ProducerFunction, 0, 0, 10);
std::thread producer1(ProducerFunction, 0, 10, 10);
std::thread consumer0(ConsumerFunction, 2);
std::thread consumer1(ConsumerFunction, 3);
producer0.join();
producer1.join();
gQueue->NoMoreJobs();
consumer0.join();
consumer1.join();
}
TEST(SimpleQueueDeathTest, CannotAddAfterQueueFinished) {
// NOLINTNEXTLINE(modernize-make-unique)
gQueue.reset(new SimpleQueue<int>());
gQueue->Push(0);
gQueue->NoMoreJobs();
// NOLINTNEXTLINE(hicpp-avoid-goto,cppcoreguidelines-avoid-goto)
ASSERT_THROW(gQueue->Push(0), EnforceNotMet);
}
} // namespace caffe2