Automatically generated with:
cp dom/.clang-format xpcom/ && mach format xpcom/**.{cpp,h}
Manual changes:
* nsTDependentSubstring.cpp was relying on include order, prevent that
from being changed by clang-format.
* Missing nsAtom.h include from nsGkAtoms.h
* nsWindowsHelpers.h needed to keep the include order
* MemoryPressureLevelMac.h needed mozilla/Attributes.h
Differential Revision: https://phabricator.services.mozilla.com/D311687
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
/* 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 "VideoUtils.h"
|
|
#include "gtest/gtest.h"
|
|
#include "mozilla/SharedThreadPool.h"
|
|
#include "mozilla/StateWatching.h"
|
|
#include "mozilla/TaskQueue.h"
|
|
#include "nsISupportsImpl.h"
|
|
|
|
namespace TestStateWatching {
|
|
|
|
using namespace mozilla;
|
|
|
|
struct Foo {
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(Foo)
|
|
void Notify() { mNotified = true; }
|
|
bool mNotified = false;
|
|
|
|
private:
|
|
~Foo() = default;
|
|
};
|
|
|
|
TEST(WatchManager, Shutdown)
|
|
{
|
|
RefPtr<TaskQueue> queue =
|
|
TaskQueue::Create(GetMediaThreadPool(MediaThreadType::SUPERVISOR),
|
|
"TestWatchManager Shutdown");
|
|
|
|
RefPtr<Foo> p = new Foo;
|
|
WatchManager<Foo> manager(p, queue);
|
|
Watchable<bool> notifier(false, "notifier");
|
|
|
|
(void)queue->Dispatch(NS_NewRunnableFunction(
|
|
"TestStateWatching::WatchManager_Shutdown_Test::TestBody", [&]() {
|
|
manager.Watch(notifier, &Foo::Notify);
|
|
notifier = true; // Trigger the call to Foo::Notify().
|
|
manager.Shutdown(); // Shutdown() should cancel the call.
|
|
}));
|
|
|
|
queue->BeginShutdown();
|
|
queue->AwaitShutdownAndIdle();
|
|
EXPECT_FALSE(p->mNotified);
|
|
}
|
|
|
|
} // namespace TestStateWatching
|