summaryrefslogtreecommitdiff
path: root/dbtests/threadedtests.cpp
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
committerAntonin Kral <a.kral@bobek.cz>2010-01-31 08:32:52 +0100
commit4eefaf421bfeddf040d96a3dafb12e09673423d7 (patch)
treecb2e5ccc7f98158894f977ff131949da36673591 /dbtests/threadedtests.cpp
downloadmongodb-4eefaf421bfeddf040d96a3dafb12e09673423d7.tar.gz
Imported Upstream version 1.3.1
Diffstat (limited to 'dbtests/threadedtests.cpp')
-rw-r--r--dbtests/threadedtests.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/dbtests/threadedtests.cpp b/dbtests/threadedtests.cpp
new file mode 100644
index 0000000..f3ebe39
--- /dev/null
+++ b/dbtests/threadedtests.cpp
@@ -0,0 +1,135 @@
+// threadedtests.cpp - Tests for threaded code
+//
+
+/**
+ * Copyright (C) 2008 10gen Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "stdafx.h"
+#include "../util/mvar.h"
+#include "../util/thread_pool.h"
+#include <boost/thread.hpp>
+#include <boost/bind.hpp>
+
+#include "dbtests.h"
+
+namespace ThreadedTests {
+
+ template <int nthreads_param=10>
+ class ThreadedTest{
+ public:
+ virtual void setup() {} //optional
+ virtual void subthread() = 0;
+ virtual void validate() = 0;
+
+ static const int nthreads = nthreads_param;
+
+ void run(){
+ setup();
+
+ launch_subthreads(nthreads);
+
+ validate();
+ }
+
+ virtual ~ThreadedTest() {}; // not necessary, but makes compilers happy
+
+ private:
+ void launch_subthreads(int remaining){
+ if (!remaining) return;
+
+ boost::thread athread(boost::bind(&ThreadedTest::subthread, this));
+
+ launch_subthreads(remaining - 1);
+
+ athread.join();
+ }
+ };
+
+ // Tested with up to 30k threads
+ class IsWrappingIntAtomic : public ThreadedTest<> {
+ static const int iterations = 1000000;
+ WrappingInt target;
+
+ void subthread(){
+ for(int i=0; i < iterations; i++){
+ //target.x++; // verified to fail with this version
+ target.atomicIncrement();
+ }
+ }
+ void validate(){
+ ASSERT_EQUALS(target.x , unsigned(nthreads * iterations));
+ }
+ };
+
+ class MVarTest : public ThreadedTest<> {
+ static const int iterations = 10000;
+ MVar<int> target;
+
+ public:
+ MVarTest() : target(0) {}
+ void subthread(){
+ for(int i=0; i < iterations; i++){
+ int val = target.take();
+#if BOOST_VERSION >= 103500
+ //increase chances of catching failure
+ boost::this_thread::yield();
+#endif
+ target.put(val+1);
+ }
+ }
+ void validate(){
+ ASSERT_EQUALS(target.take() , nthreads * iterations);
+ }
+ };
+
+ class ThreadPoolTest{
+ static const int iterations = 10000;
+ static const int nThreads = 8;
+
+ WrappingInt counter;
+ void increment(int n){
+ for (int i=0; i<n; i++){
+ counter.atomicIncrement();
+ }
+ }
+
+ public:
+ void run(){
+ ThreadPool tp(nThreads);
+
+ for (int i=0; i < iterations; i++){
+ tp.schedule(&WrappingInt::atomicIncrement, &counter);
+ tp.schedule(&ThreadPoolTest::increment, this, 2);
+ }
+
+ tp.join();
+
+ ASSERT(counter == (unsigned)(iterations * 3));
+ }
+ };
+
+ class All : public Suite {
+ public:
+ All() : Suite( "threading" ){
+ }
+
+ void setupTests(){
+ add< IsWrappingIntAtomic >();
+ add< MVarTest >();
+ add< ThreadPoolTest >();
+ }
+ } myall;
+}