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

Side by Side Diff: base/android/unguessable_token_android_unittest.cc

Issue 2468353002: Added UnguessableToken.java . (Closed)
Patch Set: renamed unit test, comments. Created 4 years, 1 month 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
« no previous file with comments | « base/android/unguessable_token_android.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/android/unguessable_token_android.h"
6
7 #include "base/android/jni_android.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace base {
11 namespace android {
12
13 TEST(UnguessableTokenAndroid, BasicCreateToken) {
14 JNIEnv* env = AttachCurrentThread();
15 uint64_t high = 0x1234567812345678;
16 uint64_t low = 0x0583503029282304;
17 base::UnguessableToken token = base::UnguessableToken::Deserialize(high, low);
18 ScopedJavaLocalRef<jobject> jtoken =
19 UnguessableTokenAndroid::Create(env, token);
20 base::UnguessableToken result =
21 UnguessableTokenAndroid::FromJavaUnguessableToken(env, jtoken);
22
23 EXPECT_EQ(token, result);
24 }
25
26 TEST(UnguessableTokenAndroid, ParcelAndUnparcel) {
27 JNIEnv* env = AttachCurrentThread();
28 uint64_t high = 0x1234567812345678;
29 uint64_t low = 0x0583503029282304;
30 base::UnguessableToken token = base::UnguessableToken::Deserialize(high, low);
31 ScopedJavaLocalRef<jobject> jtoken =
32 UnguessableTokenAndroid::Create(env, token);
33 ScopedJavaLocalRef<jobject> jtoken_clone =
34 UnguessableTokenAndroid::ParcelAndUnparcelForTesting(env, jtoken);
35 base::UnguessableToken token_clone =
36 UnguessableTokenAndroid::FromJavaUnguessableToken(env, jtoken_clone);
37
38 EXPECT_EQ(token, token_clone);
39 }
40
41 } // namespace android
42 } // namespace base
OLDNEW
« no previous file with comments | « base/android/unguessable_token_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698