tesseract/unittest/baseapi_thread_test.cc
Stefan Weil 4ec9c86226 unittest: Replace NULL by nullptr
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2018-09-29 09:27:12 +02:00

206 lines
6.9 KiB
C++

//
// Unit test to run Tesseract and Cube instances in parallel threads and verify
// the OCR result.
// Note that success of running this test as-is does NOT verify
// thread-safety. For that, you need to run the this binary under TSAN using the
// associated baseapi_thread_test_with_tsan.sh script.
//
// The tests are partitioned by instance to allow running Tesseract/Cube/both
// and by stage to run initialization/recognition/both. See flag descriptions
// for details.
#include <memory>
#include <string>
#include "leptonica/include/allheaders.h"
#include "tesseract/api/baseapi.h"
#include "thread/threadpool.h"
// Run with Tesseract instances.
DEFINE_bool(test_tesseract, true, "Test tesseract instances");
// Run with Cube instances.
// Note that with TSAN, Cube typically takes much longer to test. Ignoring
// std::string operations using the associated tess_tsan.ignore file when
// testing Cube significantly reduces testing time.
DEFINE_bool(test_cube, true, "Test Cube instances");
// When used with TSAN, having more repetitions can help in finding hidden
// thread-safety violations at the expense of increased testing time.
DEFINE_int32(reps, 1, "Num of parallel test repetitions to run.");
DEFINE_int32(max_concurrent_instances, 0,
"Maximum number of instances to run in parallel at any given "
"instant. The number of concurrent instances cannot exceed "
"reps * number_of_langs_tested, which is also the default value.");
using tesseract::TessBaseAPI;
namespace {
const char* kTessLangs[] = {"eng", "vie", nullptr};
const char* kTessImages[] = {"HelloGoogle.tif", "viet.tif", nullptr};
const char* kTessTruthText[] = {"Hello Google", "\x74\x69\xe1\xba\xbf\x6e\x67",
nullptr};
const char* kCubeLangs[] = {"hin", "ara", nullptr};
const char* kCubeImages[] = {"raaj.tif", "arabic.tif", nullptr};
const char* kCubeTruthText[] = {
"\xe0\xa4\xb0\xe0\xa4\xbe\xe0\xa4\x9c",
"\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a", nullptr};
class BaseapiThreadTest : public ::testing::Test {
protected:
static void SetUpTestCase() {
CHECK(FLAGS_test_tesseract || FLAGS_test_cube)
<< "Need to test at least one of Tesseract/Cube!";
// Form a list of langs/gt_text/image_files we will work with.
std::vector<string> image_files;
if (FLAGS_test_tesseract) {
int i = 0;
while (kTessLangs[i] && kTessTruthText[i] && kTessImages[i]) {
langs_.push_back(kTessLangs[i]);
gt_text_.push_back(kTessTruthText[i]);
image_files.push_back(kTessImages[i]);
++i;
}
LOG(INFO) << "Testing Tesseract on " << i << " languages.";
}
if (FLAGS_test_cube) {
int i = 0;
while (kCubeLangs[i] && kCubeTruthText[i] && kCubeImages[i]) {
langs_.push_back(kCubeLangs[i]);
gt_text_.push_back(kCubeTruthText[i]);
image_files.push_back(kCubeImages[i]);
++i;
}
LOG(INFO) << "Testing Cube on " << i << " languages.";
}
num_langs_ = langs_.size();
// Pre-load the images into an array. We will be making multiple copies of
// an image here if FLAGS_reps > 1 and that is intentional. In this test, we
// wish to not make any assumptions about the thread-safety of Pix objects,
// and so entirely disallow concurrent access of a Pix instance.
const int n = num_langs_ * FLAGS_reps;
for (int i = 0; i < n; ++i) {
string path =
FLAGS_test_srcdir + "/testdata/" + image_files[i % num_langs_];
Pix* new_pix = pixRead(path.c_str());
QCHECK(new_pix != nullptr) << "Could not read " << path;
pix_.push_back(new_pix);
}
pool_size_ = (FLAGS_max_concurrent_instances < 1)
? num_langs_ * FLAGS_reps
: FLAGS_max_concurrent_instances;
}
static void TearDownTestCase() {
for (int i = 0; i < pix_.size(); ++i) {
pixDestroy(&pix_[i]);
}
}
void ResetPool() {
pool_.reset(new ThreadPool(pool_size_));
pool_->StartWorkers();
}
void WaitForPoolWorkers() { pool_.reset(nullptr); }
std::unique_ptr<ThreadPool> pool_;
static int pool_size_;
static std::vector<Pix*> pix_;
static std::vector<string> langs_;
static std::vector<string> gt_text_;
static int num_langs_;
};
// static member variable declarations.
int BaseapiThreadTest::pool_size_;
std::vector<Pix*> BaseapiThreadTest::pix_;
std::vector<string> BaseapiThreadTest::langs_;
std::vector<string> BaseapiThreadTest::gt_text_;
int BaseapiThreadTest::num_langs_;
void InitTessInstance(TessBaseAPI* tess, const string& lang) {
CHECK(tess != nullptr);
const string kTessdataPath = file::JoinPath(FLAGS_test_srcdir, "tessdata");
EXPECT_EQ(0, tess->Init(kTessdataPath.c_str(), lang.c_str()));
}
void GetCleanedText(TessBaseAPI* tess, Pix* pix, string* ocr_text) {
tess->SetImage(pix);
char* result = tess->GetUTF8Text();
*ocr_text = result;
delete[] result;
absl::StripAsciiWhitespace(ocr_text);
}
void VerifyTextResult(TessBaseAPI* tess, Pix* pix, const string& lang,
const string& expected_text) {
TessBaseAPI* tess_local = nullptr;
if (tess) {
tess_local = tess;
} else {
tess_local = new TessBaseAPI;
InitTessInstance(tess_local, lang);
}
string ocr_text;
GetCleanedText(tess_local, pix, &ocr_text);
EXPECT_STREQ(expected_text.c_str(), ocr_text.c_str());
if (tess_local != tess) delete tess_local;
}
// Check that Tesseract/Cube produce the correct results in single-threaded
// operation. If not, it is pointless to run the real multi-threaded tests.
TEST_F(BaseapiThreadTest, TestBasicSanity) {
for (int i = 0; i < num_langs_; ++i) {
TessBaseAPI tess;
InitTessInstance(&tess, langs_[i]);
string ocr_text;
GetCleanedText(&tess, pix_[i], &ocr_text);
CHECK_STREQ(gt_text_[i].c_str(), ocr_text.c_str())
<< "Failed with lang = " << langs_[i];
}
}
// Test concurrent instance initialization.
TEST_F(BaseapiThreadTest, TestInit) {
const int n = num_langs_ * FLAGS_reps;
ResetPool();
std::vector<TessBaseAPI> tess(n);
for (int i = 0; i < n; ++i) {
pool_->Add(NewCallback(InitTessInstance, &tess[i], langs_[i % num_langs_]));
}
WaitForPoolWorkers();
}
// Test concurrent recognition.
TEST_F(BaseapiThreadTest, TestRecognition) {
const int n = num_langs_ * FLAGS_reps;
std::vector<TessBaseAPI> tess(n);
// Initialize api instances in a single thread.
for (int i = 0; i < n; ++i) {
InitTessInstance(&tess[i], langs_[i % num_langs_]);
}
ResetPool();
for (int i = 0; i < n; ++i) {
pool_->Add(NewCallback(VerifyTextResult, &tess[i], pix_[i],
langs_[i % num_langs_], gt_text_[i % num_langs_]));
}
WaitForPoolWorkers();
}
TEST_F(BaseapiThreadTest, TestAll) {
const int n = num_langs_ * FLAGS_reps;
ResetPool();
for (int i = 0; i < n; ++i) {
pool_->Add(NewCallback(VerifyTextResult, nullptr, pix_[i],
langs_[i % num_langs_], gt_text_[i % num_langs_]));
}
WaitForPoolWorkers();
}
} // namespace