gecko/toolkit/components/places/tests/cpp/mock_Link.h
2012-07-30 17:20:58 +03:00

121 lines
2.7 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: 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/. */
/**
* This is a mock Link object which can be used in tests.
*/
#ifndef mock_Link_h__
#define mock_Link_h__
#include "mozilla/dom/Link.h"
class mock_Link : public mozilla::dom::Link
{
public:
NS_DECL_ISUPPORTS
mock_Link(void (*aHandlerFunction)(nsLinkState),
bool aRunNextTest = true)
: mozilla::dom::Link(nullptr)
, mHandler(aHandlerFunction)
, mRunNextTest(aRunNextTest)
{
// Create a cyclic ownership, so that the link will be released only
// after its status has been updated. This will ensure that, when it should
// run the next test, it will happen at the end of the test function, if
// the link status has already been set before. Indeed the link status is
// updated on a separate connection, thus may happen at any time.
mDeathGrip = this;
}
virtual void SetLinkState(nsLinkState aState)
{
// Notify our callback function.
mHandler(aState);
// Break the cycle so the object can be destroyed.
mDeathGrip = 0;
}
virtual size_t SizeOfExcludingThis(nsMallocSizeOfFun aMallocSizeOf) const
{
return 0; // the value shouldn't matter
}
~mock_Link() {
// Run the next test if we are supposed to.
if (mRunNextTest) {
run_next_test();
}
}
private:
void (*mHandler)(nsLinkState);
bool mRunNextTest;
nsRefPtr<Link> mDeathGrip;
};
NS_IMPL_ISUPPORTS1(
mock_Link,
mozilla::dom::Link
)
////////////////////////////////////////////////////////////////////////////////
//// Needed Link Methods
namespace mozilla {
namespace dom {
Link::Link(Element* aElement)
: mElement(aElement)
, mLinkState(mozilla::dom::Link::defaultState)
, mRegistered(false)
{
}
Link::~Link()
{
}
nsLinkState
Link::GetLinkState() const
{
NS_NOTREACHED("Unexpected call to Link::GetLinkState");
return eLinkState_Unknown; // suppress compiler warning
}
void
Link::SetLinkState(nsLinkState aState)
{
NS_NOTREACHED("Unexpected call to Link::SetLinkState");
}
void
Link::ResetLinkState(bool aNotify)
{
NS_NOTREACHED("Unexpected call to Link::ResetLinkState");
}
already_AddRefed<nsIURI>
Link::GetURI() const
{
NS_NOTREACHED("Unexpected call to Link::GetURI");
return nullptr; // suppress compiler warning
}
size_t
Link::SizeOfExcludingThis(nsMallocSizeOfFun aMallocSizeOf) const
{
NS_NOTREACHED("Unexpected call to Link::SizeOfExcludingThis");
return 0;
}
} // namespace dom
} // namespace mozilla
#endif // mock_Link_h__