mirror of
https://github.com/encounter/engine.git
synced 2026-07-10 03:18:43 -07:00
18 lines
633 B
C++
18 lines
633 B
C++
// Copyright 2013 The Flutter 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 "gtest/gtest.h"
|
|
|
|
#include "flutter/fml/paths.h"
|
|
|
|
TEST(Paths, SanitizeURI) {
|
|
ASSERT_EQ(fml::paths::SanitizeURIEscapedCharacters("hello"), "hello");
|
|
ASSERT_EQ(fml::paths::SanitizeURIEscapedCharacters(""), "");
|
|
ASSERT_EQ(fml::paths::SanitizeURIEscapedCharacters("hello%20world"),
|
|
"hello world");
|
|
ASSERT_EQ(fml::paths::SanitizeURIEscapedCharacters(
|
|
"%5Chello%5cworld%20foo%20bar%21"),
|
|
"\\hello\\world foo bar!");
|
|
}
|