shared_mutex_test.cc 4.26 KB
Newer Older
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
/*
 * Copyright (c) 2014-2015, Siemens AG. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

27
#include <shared_mutex_test.h>
28 29 30 31 32 33
#include <embb/base/c/errors.h>

namespace embb {
namespace base {
namespace test {

34
SharedMutexTest::SharedMutexTest()
35 36
    : shared_mutex_(),
      counter_(0),
37 38 39
      num_threads_(partest::TestSuite::GetDefaultNumThreads()),
      num_iterations_(partest::TestSuite::GetDefaultNumIterations()) {
  CreateUnit("Shared read")
40 41
      .Pre(&SharedMutexTest::TestSharedReadPre, this)
      .Add(&SharedMutexTest::TestSharedReadThreadMethod, this,
42
           num_threads_, num_iterations_)
43 44
      .Post(&SharedMutexTest::TestSharedReadPost, this);
  CreateUnit("Multiple writer")
45 46
      .Pre(&SharedMutexTest::TestExclusiveWriterPre, this)
      .Add(&SharedMutexTest::TestExclusiveWriterReaderMethod, this,
47
           num_threads_ / 2, num_iterations_)
48
      .Add(&SharedMutexTest::TestExclusiveWriterWriterMethod, this,
49
           num_threads_ / 2, num_iterations_)
50
      .Post(&SharedMutexTest::TestExclusiveWriterPost, this);
51 52
}

53
void SharedMutexTest::TestSharedReadPre() {
54 55
  int success = embb_shared_mutex_init(&shared_mutex_);
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to initialize shared mutex.");
56 57
}

58
void SharedMutexTest::TestSharedReadThreadMethod() {
59
  int success = embb_shared_mutex_try_lock_shared(&shared_mutex_);
60 61 62 63
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to try-lock for reading.");

  success = embb_shared_mutex_unlock_shared(&shared_mutex_);
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to unlock (reading).");
64

65 66
  success = embb_shared_mutex_lock_shared(&shared_mutex_);
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to lock for reading.");
67

68
  success = embb_shared_mutex_unlock_shared(&shared_mutex_);
69 70 71
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to unlock (reading).");
}

72
void SharedMutexTest::TestSharedReadPost() {
73
  embb_shared_mutex_destroy(&shared_mutex_);
74 75
}

76
void SharedMutexTest::TestExclusiveWriterPre() {
77 78
  int success = embb_shared_mutex_init(&shared_mutex_);
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to initialize shared mutex.");
79 80 81 82

  counter_ = 0;
}

83
void SharedMutexTest::TestExclusiveWriterReaderMethod() {
84 85
  // Just add some contention

86
  int success = embb_shared_mutex_lock_shared(&shared_mutex_);
87 88
  if (success != EMBB_SUCCESS) return;

89
  success = embb_shared_mutex_unlock_shared(&shared_mutex_);
90 91 92
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to unlock (reading).");
}

93
void SharedMutexTest::TestExclusiveWriterWriterMethod() {
94
  int success = embb_shared_mutex_lock(&shared_mutex_);
95 96 97 98
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to lock for writing.");

  ++counter_;

99
  success = embb_shared_mutex_unlock(&shared_mutex_);
100 101 102
  PT_ASSERT_EQ_MSG(success, EMBB_SUCCESS, "Failed to unlock (writing).");
}

103
void SharedMutexTest::TestExclusiveWriterPost() {
104
  PT_ASSERT_EQ_MSG(counter_, num_iterations_ * (num_threads_ / 2),
105
                   "Counter value is inconsistent.");
106
  embb_shared_mutex_destroy(&shared_mutex_);
107 108 109 110 111
}

} // namespace test
} // namespace base
} // namespace embb