blob: ec23cde90a034f6d7502ac61db08b7f8c04667ea [file] [log] [blame]
// Copyright 2013 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 "ui/base/webui/web_ui_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
TEST(WebUIUtilTest, ParsePathAndScale) {
std::string path;
float factor = 0;
GURL url("http://some/random/username@email/and/more");
webui::ParsePathAndScale(url, &path, &factor);
EXPECT_EQ("random/username@email/and/more", path);
EXPECT_EQ(1.0f, factor);
factor = 0;
GURL url2("http://some/random/username/and/more");
webui::ParsePathAndScale(url2, &path, &factor);
EXPECT_EQ("random/username/and/more", path);
EXPECT_EQ(1.0f, factor);
factor = 0;
GURL url3("http://some/random/username/and/more@2ax");
webui::ParsePathAndScale(url3, &path, &factor);
EXPECT_EQ("random/username/and/more@2ax", path);
EXPECT_EQ(1.0f, factor);
factor = 0;
GURL url4("http://some/random/username/and/more@x");
webui::ParsePathAndScale(url4, &path, &factor);
EXPECT_EQ("random/username/and/more@x", path);
EXPECT_EQ(1.0f, factor);
factor = 0;
GURL url5("http://some/random/username@email/and/more@2x");
webui::ParsePathAndScale(url5, &path, &factor);
EXPECT_EQ("random/username@email/and/more", path);
EXPECT_EQ(2.0f, factor);
factor = 0;
GURL url6("http://some/random/username/and/more@1.4x");
webui::ParsePathAndScale(url6, &path, &factor);
EXPECT_EQ("random/username/and/more", path);
EXPECT_EQ(1.4f, factor);
factor = 0;
GURL url7("http://some/random/username/and/more@1.3x");
webui::ParsePathAndScale(url7, &path, &factor);
EXPECT_EQ("random/username/and/more", path);
EXPECT_EQ(1.3f, factor);
}
TEST(WebUIUtilTest, ParsePathAndFrame) {
std::string path;
int index = -2;
GURL url("http://[::192.9.5.5]/and/some/more");
webui::ParsePathAndFrame(url, &path, &index);
EXPECT_EQ("and/some/more", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url2("http://host/and/some/more");
webui::ParsePathAndFrame(url2, &path, &index);
EXPECT_EQ("and/some/more", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url3("http://host/and/some/more[2a]");
webui::ParsePathAndFrame(url3, &path, &index);
EXPECT_EQ("and/some/more[2a]", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url4("http://host/and/some/more[]");
webui::ParsePathAndFrame(url4, &path, &index);
EXPECT_EQ("and/some/more[]", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url5("http://host/and/some/more[-2]");
webui::ParsePathAndFrame(url5, &path, &index);
EXPECT_EQ("and/some/more[-2]", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url6("http://[::192.9.5.5]/and/some/more[0]");
webui::ParsePathAndFrame(url6, &path, &index);
EXPECT_EQ("and/some/more", path);
EXPECT_EQ(0, index);
index = -2;
GURL url7("http://host/and/some/more[1]");
webui::ParsePathAndFrame(url7, &path, &index);
EXPECT_EQ("and/some/more", path);
EXPECT_EQ(1, index);
index = -2;
GURL url8("http://host/and/some/more[3]");
webui::ParsePathAndFrame(url8, &path, &index);
EXPECT_EQ("and/some/more", path);
EXPECT_EQ(3, index);
index = -2;
GURL url9("http://host/and/some/more0]");
webui::ParsePathAndFrame(url9, &path, &index);
EXPECT_EQ("and/some/more0]", path);
EXPECT_EQ(-1, index);
index = -2;
GURL url10("http://host/and/some/more[0");
webui::ParsePathAndFrame(url10, &path, &index);
EXPECT_EQ("and/some/more[0", path);
EXPECT_EQ(-1, index);
}
TEST(WebUIUtilTest, ParsePathAndImageSpec) {
std::string path;
float factor = 0;
int index = -2;
GURL url("http://[::192.9.5.5]/some/random/username@email/and/more");
webui::ParsePathAndImageSpec(url, &path, &factor, &index);
EXPECT_EQ("some/random/username@email/and/more", path);
EXPECT_EQ(1.0f, factor);
EXPECT_EQ(-1, index);
factor = 0;
index = -2;
GURL url2("http://host/some/random/username/and/more");
webui::ParsePathAndImageSpec(url2, &path, &factor, &index);
EXPECT_EQ("some/random/username/and/more", path);
EXPECT_EQ(1.0f, factor);
EXPECT_EQ(-1, index);
factor = 0;
index = -2;
GURL url3("http://host/some/random/username/and/more[0]@2x");
webui::ParsePathAndImageSpec(url3, &path, &factor, &index);
EXPECT_EQ("some/random/username/and/more", path);
EXPECT_EQ(2.0f, factor);
EXPECT_EQ(0, index);
factor = 0;
index = -2;
GURL url4("http://[::192.9.5.5]/some/random/username@email/and/more[1]@1.5x");
webui::ParsePathAndImageSpec(url4, &path, &factor, &index);
EXPECT_EQ("some/random/username@email/and/more", path);
EXPECT_EQ(1.5f, factor);
EXPECT_EQ(1, index);
}