Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/plugin/UserSettingsTest.cpp

Issue 6267413888761856: Issue #1163 - add unit tests for CPluginUserSettings (Closed)
Patch Set: Created Oct. 7, 2014, 4:57 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « adblockplus.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/plugin/UserSettingsTest.cpp
===================================================================
new file mode 100644
--- /dev/null
+++ b/test/plugin/UserSettingsTest.cpp
@@ -0,0 +1,121 @@
+/*
+ * This file is part of Adblock Plus <http://adblockplus.org/>,
+ * Copyright (C) 2014 Eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <gtest/gtest.h>
+
+#include <OAIdl.h>
+#include "../../src/plugin/PluginUserSettings.h"
+
+//----------------------------------
+// GetIDsOfNames
+//----------------------------------
+
+namespace
+{
+ void SingleMethodNameFound(std::wstring name, DISPID expected_id)
sergei 2014/11/03 14:41:36 I think we need some well known abbreviation like
Felix Dahlke 2014/11/03 16:05:18 I actually thought this is modified below and that
+ {
+ CPluginUserSettings x;
+ wchar_t* names[] = {const_cast<wchar_t*>(name.c_str())};
+ DISPID ids[1];
+ HRESULT h = x.GetIDsOfNames(IID_NULL, names, 1, 0, ids);
+ ASSERT_EQ(S_OK, h);
+ DISPID id = ids[0];
+ ASSERT_EQ(expected_id, id);
+ }
+
+ void SingleMethodNameNotFound(std::wstring name)
sergei 2014/11/03 14:41:36 CRIM
+ {
+ CPluginUserSettings x;
+ wchar_t* names[] = {const_cast<wchar_t*>(name.c_str())};
+ DISPID ids[1];
+ HRESULT h = x.GetIDsOfNames(IID_NULL, names, 1, 0, ids);
+ ASSERT_NE(S_OK, h);
+ // The old version returns a nonstandard error code.
+ if (h == DISP_E_MEMBERNOTFOUND)
+ {
+ return;
+ }
+ EXPECT_EQ(DISP_E_UNKNOWNNAME, h);
+ }
+}
+
+TEST(CPluginUserSettingsGetIDsOfNames, AllDefinedMethodsMustBeFound)
+{
+ CPluginUserSettings x;
+ SingleMethodNameFound(L"GetMessage", 0);
+ SingleMethodNameFound(L"GetLanguageCount", 1);
+ SingleMethodNameFound(L"GetLanguageByIndex", 2);
+ SingleMethodNameFound(L"GetLanguageTitleByIndex", 3);
+ SingleMethodNameFound(L"SetLanguage", 4);
+ SingleMethodNameFound(L"GetLanguage", 5);
+ SingleMethodNameFound(L"GetWhitelistDomains", 6);
+ SingleMethodNameFound(L"AddWhitelistDomain", 7);
+ SingleMethodNameFound(L"RemoveWhitelistDomain", 8);
+ SingleMethodNameFound(L"GetAppLocale", 9);
+ SingleMethodNameFound(L"GetDocumentationLink", 10);
+ SingleMethodNameFound(L"IsAcceptableAdsEnabled", 11);
+ SingleMethodNameFound(L"SetAcceptableAdsEnabled", 12);
+}
+
+TEST(CPluginUserSettingsGetIDsOfNames, UndefinedMethodsMustNotBeFound)
+{
+ SingleMethodNameNotFound(L"");
+ SingleMethodNameNotFound(L"clearly unknown");
+ SingleMethodNameNotFound(L"GETMESSAGE");
+}
+
+//----------------------------------
+// Invoke
+//----------------------------------
+
+namespace
+{
+ void InvokeInvalidDispatchId(DISPID id)
+ {
+ CPluginUserSettings x;
+ DISPPARAMS params;
+ params.rgvarg = nullptr;
+ params.rgdispidNamedArgs = nullptr;
+ params.cArgs = 0;
+ params.cNamedArgs = 0;
+ EXCEPINFO ex;
+ HRESULT h = x.Invoke(id, IID_NULL, 0, DISPATCH_METHOD, &params, nullptr, &ex, nullptr);
+ ASSERT_NE(S_OK, h);
+ // The old version returns a nonstandard error code.
+ if (h == DISP_E_BADINDEX)
+ {
+ return;
+ }
+ EXPECT_EQ(DISP_E_MEMBERNOTFOUND, h);
+ }
+}
+
+/**
+ * Verify that a negative Dispatch ID returns the proper error code.
+ */
+TEST(CPluginUserSettingsInvoke, InvalidDispatchIdShouldUnderflow)
+{
+ InvokeInvalidDispatchId(-1);
+}
+
+/**
+ * Verify that a positive Dispatch ID that's too large returns the proper error code.
+ */
+TEST(CPluginUserSettingsInvoke, InvalidDispatchIdShouldOverflow)
+{
+ InvokeInvalidDispatchId(13);
+}
« no previous file with comments | « adblockplus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld