summaryrefslogtreecommitdiffstats
path: root/plugin/plugintest
diff options
context:
space:
mode:
authorAlexander Akhmetov <me@alex.earth>2018-10-15 16:23:41 +0200
committerCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-10-15 16:23:41 +0200
commit160d2785927d4729441dfa6ecd0d5536ec640687 (patch)
tree55b703d485b148ebc2a4c5903dfff57e7c2a634b /plugin/plugintest
parentc1e5fff56534387864565d7c910d49e11a3add4a (diff)
downloadchat-160d2785927d4729441dfa6ecd0d5536ec640687.tar.gz
chat-160d2785927d4729441dfa6ecd0d5536ec640687.tar.bz2
chat-160d2785927d4729441dfa6ecd0d5536ec640687.zip
GH-9633 Added plugin API method to return user's profile image (#9653)
Diffstat (limited to 'plugin/plugintest')
-rw-r--r--plugin/plugintest/api.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugin/plugintest/api.go b/plugin/plugintest/api.go
index 2f2b8bc8c..64fc55c31 100644
--- a/plugin/plugintest/api.go
+++ b/plugin/plugintest/api.go
@@ -674,6 +674,31 @@ func (_m *API) GetPostsSince(channelId string, time int64) (*model.PostList, *mo
return r0, r1
}
+// GetProfileImage provides a mock function with given fields: userId
+func (_m *API) GetProfileImage(userId string) ([]byte, *model.AppError) {
+ ret := _m.Called(userId)
+
+ var r0 []byte
+ if rf, ok := ret.Get(0).(func(string) []byte); ok {
+ r0 = rf(userId)
+ } else {
+ if ret.Get(0) != nil {
+ r0 = ret.Get(0).([]byte)
+ }
+ }
+
+ var r1 *model.AppError
+ if rf, ok := ret.Get(1).(func(string) *model.AppError); ok {
+ r1 = rf(userId)
+ } else {
+ if ret.Get(1) != nil {
+ r1 = ret.Get(1).(*model.AppError)
+ }
+ }
+
+ return r0, r1
+}
+
// GetPublicChannelsForTeam provides a mock function with given fields: teamId, offset, limit
func (_m *API) GetPublicChannelsForTeam(teamId string, offset int, limit int) (*model.ChannelList, *model.AppError) {
ret := _m.Called(teamId, offset, limit)