From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- netwerk/test/TestIOThreads.cpp | 75 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 netwerk/test/TestIOThreads.cpp (limited to 'netwerk/test/TestIOThreads.cpp') diff --git a/netwerk/test/TestIOThreads.cpp b/netwerk/test/TestIOThreads.cpp new file mode 100644 index 000000000..94aade27e --- /dev/null +++ b/netwerk/test/TestIOThreads.cpp @@ -0,0 +1,75 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "TestCommon.h" +#include "nsXPCOM.h" +#include "nsIServiceManager.h" +#include "nsServiceManagerUtils.h" +#include "nsIEventTarget.h" +#include "nsCOMPtr.h" +#include "nsNetCID.h" +#include "mozilla/Logging.h" + +// +// set NSPR_LOG_MODULES=Test:5 +// +static PRLogModuleInfo *gTestLog = nullptr; +#define LOG(args) MOZ_LOG(gTestLog, mozilla::LogLevel::Debug, args) + +class nsIOEvent : public nsIRunnable { +public: + NS_DECL_THREADSAFE_ISUPPORTS + + nsIOEvent(int i) : mIndex(i) {} + + NS_IMETHOD Run() override { + LOG(("Run [%d]\n", mIndex)); + return NS_OK; + } + +private: + int mIndex; +}; +NS_IMPL_ISUPPORTS(nsIOEvent, nsIRunnable) + +static nsresult RunTest() +{ + nsresult rv; + nsCOMPtr target = + do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID, &rv); + if (NS_FAILED(rv)) + return rv; + + for (int i=0; i<10; ++i) { + nsCOMPtr event = new nsIOEvent(i); + LOG(("Dispatch %d\n", i)); + target->Dispatch(event, NS_DISPATCH_NORMAL); + } + + return NS_OK; +} + +int main(int argc, char **argv) +{ + if (test_common_init(&argc, &argv) != 0) + return -1; + + nsresult rv; + + gTestLog = PR_NewLogModule("Test"); + + rv = NS_InitXPCOM2(nullptr, nullptr, nullptr); + if (NS_FAILED(rv)) + return rv; + + rv = RunTest(); + if (NS_FAILED(rv)) + LOG(("RunTest failed [rv=%x]\n", rv)); + + LOG(("sleeping main thread for 2 seconds...\n")); + PR_Sleep(PR_SecondsToInterval(2)); + + NS_ShutdownXPCOM(nullptr); + return 0; +} -- cgit v1.2.3