OLD | NEW |
(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/jni_unguessable_token.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(JniUnguessableToken, 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 = CreateJavaUnguessableToken(env, token); |
| 19 base::UnguessableToken result = ConvertFromJavaUnguessableToken(env, jtoken); |
| 20 |
| 21 EXPECT_EQ(token, result); |
| 22 } |
| 23 |
| 24 } // namespace android |
| 25 } // namespace base |
OLD | NEW |