diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /storage/test/test_service_init_background_thread.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'storage/test/test_service_init_background_thread.cpp')
-rw-r--r-- | storage/test/test_service_init_background_thread.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/storage/test/test_service_init_background_thread.cpp b/storage/test/test_service_init_background_thread.cpp new file mode 100644 index 000000000..56e61a19b --- /dev/null +++ b/storage/test/test_service_init_background_thread.cpp @@ -0,0 +1,58 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim set:sw=2 ts=2 et lcs=trail\:.,tab\:>~ : */ +/* 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 "storage_test_harness.h" + +#include "nsThreadUtils.h" + +/** + * This file tests that the storage service can be initialized off of the main + * thread without issue. + */ + +//////////////////////////////////////////////////////////////////////////////// +//// Helpers + +class ServiceInitializer : public mozilla::Runnable +{ +public: + NS_IMETHOD Run() override + { + // Use an explicit do_GetService instead of getService so that the check in + // getService doesn't blow up. + nsCOMPtr<mozIStorageService> service = do_GetService("@mozilla.org/storage/service;1"); + do_check_false(service); + return NS_OK; + } +}; + +//////////////////////////////////////////////////////////////////////////////// +//// Test Functions + +void +test_service_initialization_on_background_thread() +{ + nsCOMPtr<nsIRunnable> event = new ServiceInitializer(); + do_check_true(event); + + nsCOMPtr<nsIThread> thread; + do_check_success(NS_NewThread(getter_AddRefs(thread))); + + do_check_success(thread->Dispatch(event, NS_DISPATCH_NORMAL)); + + // Shutting down the thread will spin the event loop until all work in its + // event queue is completed. This will act as our thread synchronization. + do_check_success(thread->Shutdown()); +} + +void (*gTests[])(void) = { + test_service_initialization_on_background_thread, +}; + +const char *file = __FILE__; +#define TEST_NAME "Background Thread Initialization" +#define TEST_FILE file +#include "storage_test_harness_tail.h" |