Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: Source/wtf/text/AtomicStringTest.cpp

Issue 84713002: Add number() static methods to AtomicString class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 2 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 11 matching lines...) Expand all
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "InternalsSpeechSynthesis.h" 32 #include "AtomicString.h"
33 33
34 #include "core/dom/Document.h" 34 #include <gtest/gtest.h>
35 #include "core/platform/mock/PlatformSpeechSynthesizerMock.h"
36 #include "core/testing/Internals.h"
37 #include "modules/speech/DOMWindowSpeechSynthesis.h"
38 #include "modules/speech/SpeechSynthesis.h"
39 35
40 namespace WebCore { 36 namespace {
41 37
42 void InternalsSpeechSynthesis::enableMockSpeechSynthesizer(Internals* internals, Document* document) 38 TEST(WTF, AtomicStringCreationFromNumber)
tkent 2013/11/24 21:20:04 We usually specify <test target name> + "Test" for
Inactive 2013/11/24 21:48:13 I see, I used WTFStringTest.cpp as reference but I
Inactive 2013/11/24 23:19:17 Done.
43 { 39 {
44 ASSERT(internals && document && document->domWindow()); 40 int intValue = 1234;
45 41 ASSERT_EQ(AtomicString::number(intValue), "1234");
46 SpeechSynthesis* synthesis = DOMWindowSpeechSynthesis::speechSynthesis(docum ent->domWindow()); 42 intValue = -1234;
47 if (!synthesis) 43 ASSERT_EQ(AtomicString::number(intValue), "-1234");
48 return; 44 unsigned unsignedValue = 1234u;
49 45 ASSERT_EQ(AtomicString::number(unsignedValue), "1234");
50 synthesis->setPlatformSynthesizer(PlatformSpeechSynthesizerMock::create(synt hesis)); 46 long longValue = 6553500;
47 ASSERT_EQ(AtomicString::number(longValue), "6553500");
48 longValue = -6553500;
49 ASSERT_EQ(AtomicString::number(longValue), "-6553500");
50 unsigned long unsignedLongValue = 4294967295u;
51 ASSERT_EQ(AtomicString::number(unsignedLongValue), "4294967295");
52 long long longlongValue = 9223372036854775807;
53 ASSERT_EQ(AtomicString::number(longlongValue), "9223372036854775807");
54 longlongValue = -9223372036854775807;
55 ASSERT_EQ(AtomicString::number(longlongValue), "-9223372036854775807");
56 unsigned long long unsignedLongLongValue = 18446744073709551615u;
57 ASSERT_EQ(AtomicString::number(unsignedLongLongValue), "18446744073709551615 ");
58 double doubleValue = 1234.56;
59 ASSERT_EQ(AtomicString::number(doubleValue), "1234.56");
60 doubleValue = 1234.56789;
61 ASSERT_EQ(AtomicString::number(doubleValue, 9), "1234.56789");
51 } 62 }
52 63
53 } // namespace WebCore 64 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698