summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp
blob: 7f62e0b1e3fb50fad876f5e83fc30df5cf69ffbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (C) 2012 Intel Corporation. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "config.h"

#include "UnitTestUtils/EWK2UnitTestBase.h"
#include "UnitTestUtils/EWK2UnitTestEnvironment.h"
#include "WKEinaSharedString.h"
#include <EWebKit2.h>
#include <Ecore.h>
#include <WebKit2/WKString.h>
#include <WebKit2/WKURL.h>
#include <gtest/gtest.h>

using namespace EWK2UnitTest;

extern EWK2UnitTestEnvironment* environment;

// Use macro here instead of global variables in order not to have always the same pointers.
#define testString "I'm test string!"
#define anotherTestString "I'm another test string!"
#define testUrl "file:///path/somewhere"

static inline void checkString(const WKEinaSharedString& string, const char* pattern)
{
    ASSERT_EQ(string.isNull(), pattern ? false : true);
    ASSERT_EQ(string.length(), pattern ? strlen(pattern) : 0); // Compare length.
    ASSERT_EQ(string, pattern); // Compare values. Check '==' operator with WKEinaSharedString and plain string.
    ASSERT_STREQ(string, pattern); // Compare values. Check 'const char*' operator.
}

TEST_F(EWK2UnitTestBase, constructEmpty)
{
    WKEinaSharedString emptyString;
    checkString(emptyString, 0);
}

TEST_F(EWK2UnitTestBase, constructFromPlainString)
{
    WKEinaSharedString emptyString(testString);
    checkString(emptyString, testString);
}

TEST_F(EWK2UnitTestBase, constructFromWKString)
{
    WKEinaSharedString string(AdoptWK, WKStringCreateWithUTF8CString(testString));
    checkString(string, testString);
}

TEST_F(EWK2UnitTestBase, constructFromWKURL)
{
    WKEinaSharedString string(AdoptWK, WKURLCreateWithUTF8CString(testUrl));
    checkString(string, testUrl);
}

TEST_F(EWK2UnitTestBase, costructCopy)
{
    WKEinaSharedString string(testString);
    WKEinaSharedString copyString(string);
    checkString(string, testString);
    checkString(copyString, testString);
    ASSERT_EQ(string, copyString); // Check '==' operator with two instances of WKEinaSharedString.
}

TEST_F(EWK2UnitTestBase, comparisonOperators)
{
    WKEinaSharedString string(testString);
    WKEinaSharedString sameString(testString);
    WKEinaSharedString anotherString(anotherTestString);

    ASSERT_EQ(string, sameString); // Check '==' operator with two instances of WKEinaSharedString.
    ASSERT_NE(string, anotherString); // Check '!=' operator with two instances of WKEinaSharedString.

    const char* explicitlySharedString = eina_stringshare_add(testString);
    ASSERT_EQ(static_cast<const char*>(string), explicitlySharedString); // Compare pointers.
    ASSERT_STREQ(string, explicitlySharedString); // Compare values.
    eina_stringshare_del(explicitlySharedString);

    ASSERT_EQ(string, string); // Self-comparison.
}

TEST_F(EWK2UnitTestBase, assignmentOperators)
{
    WKEinaSharedString string;

    string = testString;
    checkString(string, testString);

    WKEinaSharedString anotherString(anotherTestString);
    string = anotherString;
    checkString(string, anotherTestString);
    ASSERT_EQ(string, anotherString);

    string = string; // Check that self-assignment does not break WKEinaSharedString internal data.
    checkString(string, anotherTestString);
}