Title: [126019] trunk/Source/WebKit2
Revision
126019
Author
[email protected]
Date
2012-08-20 04:52:26 -0700 (Mon, 20 Aug 2012)

Log Message

[EFL][WK2] Add unit tests for WKEinaSharedString
https://bugs.webkit.org/show_bug.cgi?id=94104

Patch by Mikhail Pozdnyakov <[email protected]> on 2012-08-20
Reviewed by Kenneth Rohde Christiansen.

Added unit tests for WKEinaSharedString class.

* PlatformEfl.cmake:
* UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp: Added.
(checkString):
(TEST_F):

Modified Paths

Added Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (126018 => 126019)


--- trunk/Source/WebKit2/ChangeLog	2012-08-20 11:01:41 UTC (rev 126018)
+++ trunk/Source/WebKit2/ChangeLog	2012-08-20 11:52:26 UTC (rev 126019)
@@ -1,3 +1,17 @@
+2012-08-20  Mikhail Pozdnyakov  <[email protected]>
+
+        [EFL][WK2] Add unit tests for WKEinaSharedString
+        https://bugs.webkit.org/show_bug.cgi?id=94104
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Added unit tests for WKEinaSharedString class.
+
+        * PlatformEfl.cmake:
+        * UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp: Added.
+        (checkString):
+        (TEST_F):
+
 2012-08-20  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Add API to set preferred languages to WebKit2 GTK+

Modified: trunk/Source/WebKit2/PlatformEfl.cmake (126018 => 126019)


--- trunk/Source/WebKit2/PlatformEfl.cmake	2012-08-20 11:01:41 UTC (rev 126018)
+++ trunk/Source/WebKit2/PlatformEfl.cmake	2012-08-20 11:52:26 UTC (rev 126019)
@@ -269,6 +269,7 @@
     test_ewk2_context
     test_ewk2_cookie_manager
     test_ewk2_download_job
+    test_ewk2_eina_shared_string
     test_ewk2_intents
     test_ewk2_view
 )

Added: trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp (0 => 126019)


--- trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp	                        (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp	2012-08-20 11:52:26 UTC (rev 126019)
@@ -0,0 +1,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);
+}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to