GSL/tests/string_span_tests.cpp

113 lines
2.9 KiB
C++
Raw Normal View History

2015-08-20 21:09:14 -04:00
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////
#include <UnitTest++/UnitTest++.h>
#include <string_span.h>
2015-08-20 21:09:14 -04:00
#include <vector>
#include <cstdlib>
using namespace std;
using namespace gsl;
2015-08-20 21:09:14 -04:00
SUITE(string_span_tests)
2015-08-20 21:09:14 -04:00
{
TEST(TestLiteralConstruction)
{
cwstring_span<> v = ensure_z(L"Hello");
2015-08-20 21:09:14 -04:00
CHECK(5 == v.length());
#ifdef CONFIRM_COMPILATION_ERRORS
wstring_span<> v2 = ensure0(L"Hello");
2015-08-20 21:09:14 -04:00
#endif
}
TEST(TestConstructFromStdString)
{
std::string s = "Hello there world";
cstring_span<> v = s;
2015-08-20 21:09:14 -04:00
CHECK(v.length() == s.length());
}
TEST(TestConstructFromStdVector)
{
std::vector<char> vec(5, 'h');
string_span<> v = vec;
2015-08-20 21:09:14 -04:00
CHECK(v.length() == vec.size());
}
TEST(TestStackArrayConstruction)
{
wchar_t stack_string[] = L"Hello";
{
cwstring_span<> v = ensure_z(stack_string);
2015-08-20 21:09:14 -04:00
CHECK(v.length() == 5);
CHECK(v.used_length() == v.length());
}
{
cwstring_span<> v = stack_string;
2015-08-20 21:09:14 -04:00
CHECK(v.length() == 6);
CHECK(v.used_length() == v.length());
}
{
wstring_span<> v = ensure_z(stack_string);
2015-08-20 21:09:14 -04:00
CHECK(v.length() == 5);
CHECK(v.used_length() == v.length());
}
{
wstring_span<> v = stack_string;
2015-08-20 21:09:14 -04:00
CHECK(v.length() == 6);
CHECK(v.used_length() == v.length());
}
}
TEST(TestConstructFromConstCharPointer)
{
const char* s = "Hello";
cstring_span<> v = ensure_z(s);
CHECK(v.length() == 5);
CHECK(v.used_length() == v.length());
}
2015-08-20 21:09:14 -04:00
TEST(TestConversionToConst)
{
char stack_string[] = "Hello";
string_span<> v = ensure_z(stack_string);
cstring_span<> v2 = v;
2015-08-20 21:09:14 -04:00
CHECK(v.length() == v2.length());
}
TEST(TestConversionFromConst)
{
char stack_string[] = "Hello";
cstring_span<> v = ensure_z(stack_string);
2015-08-20 21:09:14 -04:00
#ifdef CONFIRM_COMPILATION_ERRORS
string_span<> v2 = v;
string_span<> v3 = "Hello";
2015-08-20 21:09:14 -04:00
#endif
}
}
int main(int, const char *[])
{
return UnitTest::RunAllTests();
}