mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 11:54:53 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2018-2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <LibTest/TestCase.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
TEST_CASE(test_nonexistent_pledge)
|
|
{
|
|
auto res = pledge("testing123", "notthere");
|
|
if (res >= 0)
|
|
FAIL("Pledging on existent promises should fail.");
|
|
}
|
|
|
|
TEST_CASE(test_pledge_argument_validation)
|
|
{
|
|
auto const long_argument = ByteString::repeated('a', 2048);
|
|
|
|
auto res = pledge(long_argument.characters(), "stdio");
|
|
EXPECT_EQ(res, -1);
|
|
EXPECT_EQ(errno, E2BIG);
|
|
|
|
res = pledge("stdio", long_argument.characters());
|
|
EXPECT_EQ(res, -1);
|
|
EXPECT_EQ(errno, E2BIG);
|
|
|
|
res = pledge(long_argument.characters(), long_argument.characters());
|
|
EXPECT_EQ(res, -1);
|
|
EXPECT_EQ(errno, E2BIG);
|
|
|
|
res = pledge("fake", "stdio");
|
|
EXPECT_EQ(res, -1);
|
|
EXPECT_EQ(errno, EINVAL);
|
|
|
|
res = pledge("stdio", "fake");
|
|
EXPECT_EQ(res, -1);
|
|
EXPECT_EQ(errno, EINVAL);
|
|
}
|
|
|
|
TEST_CASE(test_pledge_failures)
|
|
{
|
|
auto res = pledge("stdio unix rpath", "stdio");
|
|
if (res < 0)
|
|
FAIL("Initial pledge is expected to work.");
|
|
|
|
res = pledge("stdio unix", "stdio unix");
|
|
if (res >= 0)
|
|
FAIL("Additional execpromise \"unix\" should have failed");
|
|
|
|
res = pledge("stdio", "stdio");
|
|
if (res < 0)
|
|
FAIL("Reducing promises is expected to work.");
|
|
}
|