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

Side by Side Diff: android_webview/browser/aw_media_url_interceptor_unittest.cc

Issue 2863233002: [WebView] Move files from native to browser (Closed)
Patch Set: Created 3 years, 7 months 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "android_webview/native/aw_media_url_interceptor.h" 5 #include "android_webview/browser/aw_media_url_interceptor.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <string> 8 #include <string>
9 9
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 using testing::Test; 12 using testing::Test;
13 13
14 namespace android_webview { 14 namespace android_webview {
15 15
16 namespace { 16 namespace {
17 17
18 // Sentinel value to check whether the fields have been set. 18 // Sentinel value to check whether the fields have been set.
19 const int UNSET_VALUE = -1; 19 const int UNSET_VALUE = -1;
20 20
21 class AwMediaUrlInterceptorTest : public Test { 21 class AwMediaUrlInterceptorTest : public Test {
22 public: 22 public:
23 AwMediaUrlInterceptorTest() 23 AwMediaUrlInterceptorTest()
24 : fd_(UNSET_VALUE), offset_(UNSET_VALUE), size_(UNSET_VALUE), 24 : fd_(UNSET_VALUE),
25 url_interceptor_(new AwMediaUrlInterceptor()){ 25 offset_(UNSET_VALUE),
26 } 26 size_(UNSET_VALUE),
27 url_interceptor_(new AwMediaUrlInterceptor()) {}
28
27 protected: 29 protected:
28 int fd_; 30 int fd_;
29 int64_t offset_; 31 int64_t offset_;
30 int64_t size_; 32 int64_t size_;
31 std::unique_ptr<AwMediaUrlInterceptor> url_interceptor_; 33 std::unique_ptr<AwMediaUrlInterceptor> url_interceptor_;
32 }; 34 };
33 35
34 } // namespace 36 } // namespace
35 37
36 TEST_F(AwMediaUrlInterceptorTest, TestInterceptValidAssetUrl) { 38 TEST_F(AwMediaUrlInterceptorTest, TestInterceptValidAssetUrl) {
37 // This asset file exists in the android_webview_unittests-debug.apk. 39 // This asset file exists in the android_webview_unittests-debug.apk.
38 // See gyp rule android_webview_unittests_apk. 40 // See gyp rule android_webview_unittests_apk.
39 const std::string valid_asset_url( 41 const std::string valid_asset_url("file:///android_asset/asset_file.ogg");
40 "file:///android_asset/asset_file.ogg");
41 42
42 ASSERT_TRUE(url_interceptor_->Intercept( 43 ASSERT_TRUE(
43 valid_asset_url, &fd_, &offset_, &size_)); 44 url_interceptor_->Intercept(valid_asset_url, &fd_, &offset_, &size_));
44 EXPECT_NE(UNSET_VALUE, fd_); 45 EXPECT_NE(UNSET_VALUE, fd_);
45 EXPECT_NE(UNSET_VALUE, offset_); 46 EXPECT_NE(UNSET_VALUE, offset_);
46 EXPECT_NE(UNSET_VALUE, size_); 47 EXPECT_NE(UNSET_VALUE, size_);
47 } 48 }
48 49
49 TEST_F(AwMediaUrlInterceptorTest, TestInterceptInvalidAssetUrl) { 50 TEST_F(AwMediaUrlInterceptorTest, TestInterceptInvalidAssetUrl) {
50 // This asset file does not exist in the android_webview_unittests-debug.apk. 51 // This asset file does not exist in the android_webview_unittests-debug.apk.
51 // See gyp rule android_webview_unittests_apk. 52 // See gyp rule android_webview_unittests_apk.
52 const std::string invalid_asset_url( 53 const std::string invalid_asset_url(
53 "file:///android_asset/file_does_not_exist.ogg"); 54 "file:///android_asset/file_does_not_exist.ogg");
54 55
55 ASSERT_FALSE(url_interceptor_->Intercept( 56 ASSERT_FALSE(
56 invalid_asset_url, &fd_, &offset_, &size_)); 57 url_interceptor_->Intercept(invalid_asset_url, &fd_, &offset_, &size_));
57 EXPECT_EQ(UNSET_VALUE, fd_); 58 EXPECT_EQ(UNSET_VALUE, fd_);
58 EXPECT_EQ(UNSET_VALUE, offset_); 59 EXPECT_EQ(UNSET_VALUE, offset_);
59 EXPECT_EQ(UNSET_VALUE, size_); 60 EXPECT_EQ(UNSET_VALUE, size_);
60 } 61 }
61 62
62 TEST_F(AwMediaUrlInterceptorTest, TestInterceptNonAssetUrl) { 63 TEST_F(AwMediaUrlInterceptorTest, TestInterceptNonAssetUrl) {
63 // This url does not refer to an asset in the apk. 64 // This url does not refer to an asset in the apk.
64 const std::string non_asset_url("file:///sdcard/file.txt"); 65 const std::string non_asset_url("file:///sdcard/file.txt");
65 66
66 ASSERT_FALSE(url_interceptor_->Intercept( 67 ASSERT_FALSE(
67 non_asset_url, &fd_, &offset_, &size_)); 68 url_interceptor_->Intercept(non_asset_url, &fd_, &offset_, &size_));
68 EXPECT_EQ(UNSET_VALUE, fd_); 69 EXPECT_EQ(UNSET_VALUE, fd_);
69 EXPECT_EQ(UNSET_VALUE, offset_); 70 EXPECT_EQ(UNSET_VALUE, offset_);
70 EXPECT_EQ(UNSET_VALUE, size_); 71 EXPECT_EQ(UNSET_VALUE, size_);
71 } 72 }
72 73
73 } // namespace android_webview 74 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698