// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ #define CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ #include "base/callback.h" #include "base/observer_list.h" #include "base/time/time.h" #include "content/public/browser/download_interrupt_reasons.h" #include "content/public/browser/download_item.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" namespace content { class MockDownloadItem : public DownloadItem { public: MockDownloadItem(); virtual ~MockDownloadItem(); // Management of observer lists is common in tests. So Add/RemoveObserver // methods are not mocks. In addition, any registered observers will receive a // OnDownloadDestroyed() notification when the mock is destroyed. virtual void AddObserver(Observer* observer) OVERRIDE; virtual void RemoveObserver(Observer* observer) OVERRIDE; // Dispatches an OnDownloadOpened() notification to observers. void NotifyObserversDownloadOpened(); // Dispatches an OnDownloadRemoved() notification to observers. void NotifyObserversDownloadRemoved(); // Dispatches an OnDownloadUpdated() notification to observers. void NotifyObserversDownloadUpdated(); MOCK_METHOD0(UpdateObservers, void()); MOCK_METHOD0(ValidateDangerousDownload, void()); MOCK_METHOD1(StealDangerousDownload, void(const AcquireFileCallback&)); MOCK_METHOD0(Pause, void()); MOCK_METHOD0(Resume, void()); MOCK_METHOD1(Cancel, void(bool)); MOCK_METHOD0(Remove, void()); MOCK_METHOD0(OpenDownload, void()); MOCK_METHOD0(ShowDownloadInShell, void()); MOCK_CONST_METHOD0(GetId, uint32()); MOCK_CONST_METHOD0(GetState, DownloadState()); MOCK_CONST_METHOD0(GetLastReason, DownloadInterruptReason()); MOCK_CONST_METHOD0(IsPaused, bool()); MOCK_CONST_METHOD0(IsTemporary, bool()); MOCK_CONST_METHOD0(CanResume, bool()); MOCK_CONST_METHOD0(IsDone, bool()); MOCK_CONST_METHOD0(GetURL, const GURL&()); MOCK_CONST_METHOD0(GetUrlChain, const std::vector<GURL>&()); MOCK_CONST_METHOD0(GetOriginalUrl, const GURL&()); MOCK_CONST_METHOD0(GetReferrerUrl, const GURL&()); MOCK_CONST_METHOD0(GetTabUrl, const GURL&()); MOCK_CONST_METHOD0(GetTabReferrerUrl, const GURL&()); MOCK_CONST_METHOD0(GetSuggestedFilename, std::string()); MOCK_CONST_METHOD0(GetContentDisposition, std::string()); MOCK_CONST_METHOD0(GetMimeType, std::string()); MOCK_CONST_METHOD0(GetOriginalMimeType, std::string()); MOCK_CONST_METHOD0(GetReferrerCharset, std::string()); MOCK_CONST_METHOD0(GetRemoteAddress, std::string()); MOCK_CONST_METHOD0(HasUserGesture, bool()); MOCK_CONST_METHOD0(GetTransitionType, ui::PageTransition()); MOCK_CONST_METHOD0(GetLastModifiedTime, const std::string&()); MOCK_CONST_METHOD0(GetETag, const std::string&()); MOCK_CONST_METHOD0(IsSavePackageDownload, bool()); MOCK_CONST_METHOD0(GetFullPath, const base::FilePath&()); MOCK_CONST_METHOD0(GetTargetFilePath, const base::FilePath&()); MOCK_CONST_METHOD0(GetForcedFilePath, const base::FilePath&()); MOCK_CONST_METHOD0(GetFileNameToReportUser, base::FilePath()); MOCK_CONST_METHOD0(GetTargetDisposition, TargetDisposition()); MOCK_CONST_METHOD0(GetHash, const std::string&()); MOCK_CONST_METHOD0(GetHashState, const std::string&()); MOCK_CONST_METHOD0(GetFileExternallyRemoved, bool()); MOCK_METHOD1(DeleteFile, void(const base::Callback<void(bool)>&)); MOCK_CONST_METHOD0(IsDangerous, bool()); MOCK_CONST_METHOD0(GetDangerType, DownloadDangerType()); MOCK_CONST_METHOD1(TimeRemaining, bool(base::TimeDelta*)); MOCK_CONST_METHOD0(CurrentSpeed, int64()); MOCK_CONST_METHOD0(PercentComplete, int()); MOCK_CONST_METHOD0(AllDataSaved, bool()); MOCK_CONST_METHOD0(GetTotalBytes, int64()); MOCK_CONST_METHOD0(GetReceivedBytes, int64()); MOCK_CONST_METHOD0(GetStartTime, base::Time()); MOCK_CONST_METHOD0(GetEndTime, base::Time()); MOCK_METHOD0(CanShowInFolder, bool()); MOCK_METHOD0(CanOpenDownload, bool()); MOCK_METHOD0(ShouldOpenFileBasedOnExtension, bool()); MOCK_CONST_METHOD0(GetOpenWhenComplete, bool()); MOCK_METHOD0(GetAutoOpened, bool()); MOCK_CONST_METHOD0(GetOpened, bool()); MOCK_CONST_METHOD0(GetBrowserContext, BrowserContext*()); MOCK_CONST_METHOD0(GetWebContents, WebContents*()); MOCK_METHOD1(OnContentCheckCompleted, void(DownloadDangerType)); MOCK_METHOD1(SetOpenWhenComplete, void(bool)); MOCK_METHOD1(SetIsTemporary, void(bool)); MOCK_METHOD1(SetOpened, void(bool)); MOCK_METHOD1(SetDisplayName, void(const base::FilePath&)); MOCK_CONST_METHOD1(DebugString, std::string(bool)); private: ObserverList<Observer> observers_; }; } // namespace content #endif // CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_