mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This caused us to lose our gn check certification. :( Turns out gn check was just ignoring all the header paths it didn't understand and so gn check passing for sky wasn't meaning much. I tried to straighten out some of the mess in this CL, but its going to take several more rounds of massaging before gn check passes again. On the bright side (almost) all of our headers are absolute now. Turns out my script (attached to the bug) didn't notice ../ includes but I'll fix that in the next patch. R=abarth@chromium.org BUG=435361 Review URL: https://codereview.chromium.org/746023002
137 lines
4.5 KiB
C++
137 lines
4.5 KiB
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/core/css/MediaQueryEvaluator.h"
|
|
|
|
#include "core/testing/DummyPageHolder.h"
|
|
#include "gen/sky/core/MediaTypeNames.h"
|
|
#include "sky/engine/core/css/MediaList.h"
|
|
#include "sky/engine/core/css/MediaValuesCached.h"
|
|
#include "sky/engine/core/frame/FrameView.h"
|
|
#include "sky/engine/wtf/PassOwnPtr.h"
|
|
#include "sky/engine/wtf/text/StringBuilder.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
namespace blink {
|
|
|
|
typedef struct {
|
|
const char* input;
|
|
const bool output;
|
|
} TestCase;
|
|
|
|
TestCase screenTestCases[] = {
|
|
{"", 1},
|
|
{" ", 1},
|
|
{"screen", 1},
|
|
{"screen and (color)", 1},
|
|
{"not screen and (color)", 0},
|
|
{"screen and (device-aspect-ratio: 16/9)", 0},
|
|
{"screen and (device-aspect-ratio: 1/1)", 1},
|
|
{"all and (min-color: 2)", 1},
|
|
{"all and (min-color: 32)", 0},
|
|
{"all and (min-color-index: 0)", 1},
|
|
{"all and (min-color-index: 1)", 0},
|
|
{"all and (monochrome)", 0},
|
|
{"all and (min-monochrome: 0)", 1},
|
|
{"(resolution: 2dppx)", 1},
|
|
{"(resolution: 1dppx)", 0},
|
|
{"(orientation: portrait)", 1},
|
|
{"(orientation: landscape)", 0},
|
|
{"tv and (scan: progressive)", 0},
|
|
{"(pointer: coarse)", 0},
|
|
{"(pointer: fine)", 1},
|
|
{"(hover: hover)", 1},
|
|
{"(hover: on-demand)", 0},
|
|
{"(hover: none)", 0},
|
|
{0, 0} // Do not remove the terminator line.
|
|
};
|
|
|
|
TestCase viewportTestCases[] = {
|
|
{"all and (min-width: 500px)", 1},
|
|
{"(min-width: 500px)", 1},
|
|
{"(min-width: 501px)", 0},
|
|
{"(max-width: 500px)", 1},
|
|
{"(max-width: 499px)", 0},
|
|
{"(width: 500px)", 1},
|
|
{"(width: 501px)", 0},
|
|
{"(min-height: 500px)", 1},
|
|
{"(min-height: 501px)", 0},
|
|
{"(max-height: 500px)", 1},
|
|
{"(max-height: 499px)", 0},
|
|
{"(height: 500px)", 1},
|
|
{"(height: 501px)", 0},
|
|
{"screen and (min-width: 400px) and (max-width: 700px)", 1},
|
|
{0, 0} // Do not remove the terminator line.
|
|
};
|
|
|
|
TestCase printTestCases[] = {
|
|
{"print and (min-resolution: 1dppx)", 1},
|
|
{"print and (min-resolution: 118dpcm)", 1},
|
|
{"print and (min-resolution: 119dpcm)", 0},
|
|
{0, 0} // Do not remove the terminator line.
|
|
};
|
|
|
|
void testMQEvaluator(TestCase* testCases, const MediaQueryEvaluator& mediaQueryEvaluator)
|
|
{
|
|
for (unsigned i = 0; testCases[i].input; ++i) {
|
|
RefPtr<MediaQuerySet> querySet = MediaQuerySet::create(testCases[i].input);
|
|
ASSERT_EQ(testCases[i].output, mediaQueryEvaluator.eval(querySet.get()));
|
|
}
|
|
}
|
|
|
|
TEST(MediaQueryEvaluatorTest, Cached)
|
|
{
|
|
MediaValuesCached::MediaValuesCachedData data;
|
|
data.viewportWidth = 500;
|
|
data.viewportHeight = 500;
|
|
data.deviceWidth = 500;
|
|
data.deviceHeight = 500;
|
|
data.devicePixelRatio = 2.0;
|
|
data.colorBitsPerComponent = 24;
|
|
data.monochromeBitsPerComponent = 0;
|
|
data.primaryPointerType = PointerTypeFine;
|
|
data.primaryHoverType = HoverTypeHover;
|
|
data.defaultFontSize = 16;
|
|
data.threeDEnabled = true;
|
|
data.mediaType = MediaTypeNames::screen;
|
|
data.strictMode = true;
|
|
RefPtr<MediaValues> mediaValues = MediaValuesCached::create(data);
|
|
|
|
MediaQueryEvaluator mediaQueryEvaluator(*mediaValues);
|
|
testMQEvaluator(screenTestCases, mediaQueryEvaluator);
|
|
testMQEvaluator(viewportTestCases, mediaQueryEvaluator);
|
|
|
|
data.mediaType = MediaTypeNames::print;
|
|
mediaValues = MediaValuesCached::create(data);
|
|
MediaQueryEvaluator printMediaQueryEvaluator(*mediaValues);
|
|
testMQEvaluator(printTestCases, printMediaQueryEvaluator);
|
|
}
|
|
|
|
TEST(MediaQueryEvaluatorTest, Dynamic)
|
|
{
|
|
OwnPtr<DummyPageHolder> pageHolder = DummyPageHolder::create(IntSize(500, 500));
|
|
pageHolder->frameView().setMediaType(MediaTypeNames::screen);
|
|
|
|
MediaQueryEvaluator mediaQueryEvaluator(&pageHolder->frame());
|
|
testMQEvaluator(viewportTestCases, mediaQueryEvaluator);
|
|
pageHolder->frameView().setMediaType(MediaTypeNames::print);
|
|
testMQEvaluator(printTestCases, mediaQueryEvaluator);
|
|
}
|
|
|
|
TEST(MediaQueryEvaluatorTest, DynamicNoView)
|
|
{
|
|
OwnPtr<DummyPageHolder> pageHolder = DummyPageHolder::create(IntSize(500, 500));
|
|
RefPtr<FrameView> view = pageHolder->frame().view();
|
|
pageHolder->frame().setView(nullptr);
|
|
MediaQueryEvaluator mediaQueryEvaluator(&pageHolder->frame());
|
|
RefPtr<MediaQuerySet> querySet = MediaQuerySet::create("foobar");
|
|
bool output = false;
|
|
ASSERT_EQ(output, mediaQueryEvaluator.eval(querySet.get()));
|
|
pageHolder->frame().setView(view);
|
|
}
|
|
|
|
} // namespace
|