This source file includes following definitions.
- IN_PROC_BROWSER_TEST_F
#include "base/run_loop.h"
#include "cc/output/context_provider.h"
#include "content/browser/compositor/image_transport_factory.h"
#include "content/public/browser/gpu_data_manager.h"
#include "content/public/test/content_browser_test.h"
#include "gpu/GLES2/gl2extchromium.h"
#include "gpu/command_buffer/client/gles2_interface.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "ui/compositor/compositor.h"
namespace content {
namespace {
class ImageTransportFactoryBrowserTest : public ContentBrowserTest {};
class MockImageTransportFactoryObserver : public ImageTransportFactoryObserver {
public:
MOCK_METHOD0(OnLostResources, void());
};
#if defined(OS_MACOSX)
#define MAYBE_TestLostContext DISABLED_TestLostContext
#else
#define MAYBE_TestLostContext TestLostContext
#endif
IN_PROC_BROWSER_TEST_F(ImageTransportFactoryBrowserTest,
MAYBE_TestLostContext) {
if (!GpuDataManager::GetInstance()->CanUseGpuBrowserCompositor())
return;
ImageTransportFactory* factory = ImageTransportFactory::GetInstance();
scoped_refptr<ui::Texture> texture = factory->CreateTransportClient(1.f);
ASSERT_TRUE(texture.get());
MockImageTransportFactoryObserver observer;
factory->AddObserver(&observer);
base::RunLoop run_loop;
EXPECT_CALL(observer, OnLostResources())
.WillOnce(testing::InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit));
ui::ContextFactory* context_factory = ui::ContextFactory::GetInstance();
gpu::gles2::GLES2Interface* gl =
context_factory->SharedMainThreadContextProvider()->ContextGL();
gl->LoseContextCHROMIUM(GL_GUILTY_CONTEXT_RESET_ARB,
GL_INNOCENT_CONTEXT_RESET_ARB);
gl->Flush();
run_loop.Run();
EXPECT_EQ(0u, texture->PrepareTexture());
factory->RemoveObserver(&observer);
}
}
}