51Testing软件测试论坛

标题: 如何使用Go接口测试Google API Golang库? [打印本页]

作者: 测试积点老人    时间: 2020-9-30 13:08
标题: 如何使用Go接口测试Google API Golang库?

  1. <p>type MyFile struct {</p><p> DownloadUrl string
  2. json:“ downloadUrl,omitempty”</p><p>
  3. } </p><p>type MyFilesGetCall接口{</p><p> Do()(* MyFile,error)</p><p> // Do()(  * drive.File,错误)//此功能有效</p><p>} </p><p>
  4. 键入MyFilesService接口{</p><p> Get(string)* MyFilesGetCall </p><p> // Get(string)* drive.FilesGetCall //此功能有效</p><p>}  </p><p>
  5. func GetInfo(id字符串,myService MyFilesService){</p><p> myService.Get(id).Do()</p><p>} </p><p>
  6. func main(){</p><p> drive,_:= drive.New(new(http  .Client))</p><p> GetInfo(“ id”,drive.Files)</p><p>} </p><p> </ code> </ pre> </p>
复制代码

当我尝试运行此文件时,出现以下错误:

  1. <p>$可以运行.go </p><p>./so.go:24:无法在GetInfo的参数中使用drive.Files(类型* drive.FilesService)作为MyFilesService类型:</p><p><p>drive.FilesService不即时 plement MyFilesService(错误的Get方法类型)</p><p>具有Get(字符串)* drive.FilesGetCall </p><p>想要Get(字符串)* MyFilesGetCall </p><p>./so.go:28:fService.Get(id).Do undefined(type  * MyFilesGetCall没有字段或方法Do)</p><p></ code> </ pre> </p>
复制代码

接口似乎只能工作1级。



作者: 海海豚    时间: 2020-10-9 09:37
https://ask.csdn.net/questions/1046052  参考下这个
作者: 郭小贱    时间: 2020-10-9 09:45
可以参考这篇文章看下呢 https://ask.csdn.net/questions/1046052
作者: qqq911    时间: 2020-10-9 10:11
格式化下代码
作者: jingzizx    时间: 2020-10-9 13:17
方法是否正确




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2