/** * Copyright (C) 2013 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 . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the GNU Affero General Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #include #include "mongo/base/init.h" #include "mongo/db/curop.h" #include "mongo/unittest/unittest.h" namespace mongo { namespace { const long long intervalLong = 2000 * 1000; // 2s in micros const long long intervalShort = 10 * 1000; // 10ms in micros // // Before executing the TimeHasExpired suite, spawn a dummy listener thread to be the // process time tracker (the tests rely on Listener::_timeTracker being available). // class TestListener : public Listener { public: TestListener() : Listener("test", "", 0) {} // port 0 => any available high port virtual void acceptedMP(MessagingPort *mp) {} }; void timeTrackerSetup() { TestListener listener; listener.setAsTimeTracker(); listener.setupSockets(); listener.initAndListen(); } MONGO_INITIALIZER(CurOpTest)(InitializerContext* context) { boost::thread t(timeTrackerSetup); // Wait for listener thread to start tracking time. while (Listener::getElapsedTimeMillis() == 0) { sleepmillis(10); } return Status::OK(); } // Long operation + short timeout => time should expire. TEST(TimeHasExpired, PosSimple) { CurOp curOp(NULL); curOp.setMaxTimeMicros(intervalShort); curOp.ensureStarted(); sleepmicros(intervalLong); ASSERT_TRUE(curOp.maxTimeHasExpired()); } // Short operation + long timeout => time should not expire. TEST(TimeHasExpired, NegSimple) { CurOp curOp(NULL); curOp.setMaxTimeMicros(intervalLong); curOp.ensureStarted(); sleepmicros(intervalShort); ASSERT_FALSE(curOp.maxTimeHasExpired()); } } // namespace } // namespace mongo