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

Unified Diff: webkit/plugins/npapi/plugin_lib_unittest.cc

Issue 6205004: Re-land: add support for blocking out-of-date plug-ins on Linux.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/plugin_lib_posix.cc ('k') | webkit/plugins/npapi/plugin_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_lib_unittest.cc
===================================================================
--- webkit/plugins/npapi/plugin_lib_unittest.cc (revision 70986)
+++ webkit/plugins/npapi/plugin_lib_unittest.cc (working copy)
@@ -152,6 +152,28 @@
EXPECT_TRUE(types[4].mime_type.find(';') != std::string::npos);
}
+// Make sure we understand how to get the version numbers for common Linux
+// plug-ins.
+TEST(PluginDescriptionParse, ExtractVersion) {
+ WebPluginInfo info;
+ PluginLib::ExtractVersionString("Shockwave Flash 10.1 r102", &info);
+ EXPECT_EQ(ASCIIToUTF16("10.1 r102"), info.version);
+ PluginLib::ExtractVersionString("Java(TM) Plug-in 1.6.0_22", &info);
+ EXPECT_EQ(ASCIIToUTF16("1.6.0_22"), info.version);
+ // It's actually much more likely for a modern Linux distribution to have
+ // IcedTea.
+ PluginLib::ExtractVersionString(
+ "IcedTea NPR Web Browser Plugin "
+ "(using IcedTea6 1.9.2 (6b20-1.9.2-0ubuntu1~10.04.1))",
+ &info);
+ EXPECT_EQ(ASCIIToUTF16("1.9.2"), info.version);
+ PluginLib::ExtractVersionString(
+ "IcedTea NPR Web Browser Plugin "
+ "(using IcedTea6 1.9.3 (fedora-49.1.9.3.fc14-i386))`",
+ &info);
+ EXPECT_EQ(ASCIIToUTF16("1.9.3"), info.version);
+}
+
#endif // defined(OS_LINUX)
} // namespace npapi
« no previous file with comments | « webkit/plugins/npapi/plugin_lib_posix.cc ('k') | webkit/plugins/npapi/plugin_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698