| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ui/base/dragdrop/os_exchange_data_provider_aurax11.h" | 5 #include "ui/base/dragdrop/os_exchange_data_provider_aurax11.h" |
| 6 | 6 |
| 7 // Clean up X11 header polution | 7 // Clean up X11 header polution |
| 8 #undef None | 8 #undef None |
| 9 #undef Bool | 9 #undef Bool |
| 10 | 10 |
| 11 #include "base/message_loop/message_loop.h" | |
| 12 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 13 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "base/test/scoped_task_environment.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 #include "ui/base/dragdrop/file_info.h" | 15 #include "ui/base/dragdrop/file_info.h" |
| 16 #include "ui/events/platform/x11/x11_event_source_glib.h" | 16 #include "ui/events/platform/x11/x11_event_source_glib.h" |
| 17 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 18 | 18 |
| 19 const char kFileURL[] = "file:///home/user/file.txt"; | 19 const char kFileURL[] = "file:///home/user/file.txt"; |
| 20 const char kFileName[] = "/home/user/file.txt"; | 20 const char kFileName[] = "/home/user/file.txt"; |
| 21 const char kGoogleTitle[] = "Google"; | 21 const char kGoogleTitle[] = "Google"; |
| 22 const char kGoogleURL[] = "http://www.google.com/"; | 22 const char kGoogleURL[] = "http://www.google.com/"; |
| 23 | 23 |
| 24 namespace ui { | 24 namespace ui { |
| 25 | 25 |
| 26 class OSExchangeDataProviderAuraX11Test : public testing::Test { | 26 class OSExchangeDataProviderAuraX11Test : public testing::Test { |
| 27 public: | 27 public: |
| 28 OSExchangeDataProviderAuraX11Test() : event_source(gfx::GetXDisplay()) {} | 28 OSExchangeDataProviderAuraX11Test() |
| 29 : scoped_task_environment_( |
| 30 base::test::ScopedTaskEnvironment::MainThreadType::UI), |
| 31 event_source(gfx::GetXDisplay()) {} |
| 29 | 32 |
| 30 void AddURLList(const std::string& list_contents) { | 33 void AddURLList(const std::string& list_contents) { |
| 31 std::string contents_copy = list_contents; | 34 std::string contents_copy = list_contents; |
| 32 scoped_refptr<base::RefCountedMemory> mem( | 35 scoped_refptr<base::RefCountedMemory> mem( |
| 33 base::RefCountedString::TakeString(&contents_copy)); | 36 base::RefCountedString::TakeString(&contents_copy)); |
| 34 | 37 |
| 35 provider.format_map_.Insert( | 38 provider.format_map_.Insert( |
| 36 provider.atom_cache_.GetAtom(ui::Clipboard::kMimeTypeURIList), | 39 provider.atom_cache_.GetAtom(ui::Clipboard::kMimeTypeURIList), |
| 37 mem); | 40 mem); |
| 38 } | 41 } |
| 39 | 42 |
| 40 protected: | 43 protected: |
| 41 base::MessageLoopForUI message_loop; | 44 base::test::ScopedTaskEnvironment scoped_task_environment_; |
| 42 X11EventSourceGlib event_source; | 45 X11EventSourceGlib event_source; |
| 43 ui::OSExchangeDataProviderAuraX11 provider; | 46 ui::OSExchangeDataProviderAuraX11 provider; |
| 44 }; | 47 }; |
| 45 | 48 |
| 46 TEST_F(OSExchangeDataProviderAuraX11Test, MozillaURL) { | 49 TEST_F(OSExchangeDataProviderAuraX11Test, MozillaURL) { |
| 47 // Check that we can get titled entries. | 50 // Check that we can get titled entries. |
| 48 provider.SetURL(GURL(kGoogleURL), base::ASCIIToUTF16(kGoogleTitle)); | 51 provider.SetURL(GURL(kGoogleURL), base::ASCIIToUTF16(kGoogleTitle)); |
| 49 { | 52 { |
| 50 GURL out_gurl; | 53 GURL out_gurl; |
| 51 base::string16 out_str; | 54 base::string16 out_str; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 AddURLList(kFileURL); | 122 AddURLList(kFileURL); |
| 120 | 123 |
| 121 EXPECT_FALSE(provider.HasString()); | 124 EXPECT_FALSE(provider.HasString()); |
| 122 base::string16 out_str; | 125 base::string16 out_str; |
| 123 EXPECT_FALSE(provider.GetString(&out_str)); | 126 EXPECT_FALSE(provider.GetString(&out_str)); |
| 124 | 127 |
| 125 EXPECT_TRUE(provider.HasFile()); | 128 EXPECT_TRUE(provider.HasFile()); |
| 126 } | 129 } |
| 127 | 130 |
| 128 } // namespace ui | 131 } // namespace ui |
| OLD | NEW |