blob: f6278bc4f85dc2c31cf7ec9fb167bd0ee09fa2db [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#import "ios/web/navigation/nscoder_util.h"
#import <Foundation/Foundation.h>
#import <stddef.h>
#import "testing/gtest/include/gtest/gtest.h"
#import "testing/platform_test.h"
namespace web {
namespace {
typedef PlatformTest NSCoderStdStringTest;
const char* testStrings[] = {
"Arf",
"",
"This is working™",
"古池や蛙飛込む水の音\nふるいけやかわずとびこむみずのおと",
"ἀγεωμέτρητος μηδεὶς εἰσίτω",
"Bang!\t\n"};
TEST_F(NSCoderStdStringTest, encodeDecode) {
for (size_t i = 0; i < std::size(testStrings); ++i) {
NSKeyedArchiver* archiver =
[[NSKeyedArchiver alloc] initRequiringSecureCoding:NO];
nscoder_util::EncodeString(archiver, @"test", testStrings[i]);
NSKeyedUnarchiver* unarchiver =
[[NSKeyedUnarchiver alloc] initForReadingFromData:[archiver encodedData]
error:nil];
const std::string decoded = nscoder_util::DecodeString(unarchiver, @"test");
EXPECT_EQ(decoded, testStrings[i]);
}
}
TEST_F(NSCoderStdStringTest, decodeEmpty) {
NSKeyedArchiver* archiver =
[[NSKeyedArchiver alloc] initRequiringSecureCoding:NO];
NSKeyedUnarchiver* unarchiver =
[[NSKeyedUnarchiver alloc] initForReadingFromData:[archiver encodedData]
error:nil];
const std::string decoded = nscoder_util::DecodeString(unarchiver, @"test");
EXPECT_EQ(decoded, "");
}
} // namespace
} // namespace web