2017-02-04 202 views
1

似乎无法找到此答案。Travis-CI GoLang示例测试错误

我正在尝试使用Travis-CI为我的GoLang包构建/运行测试;但是,Travis在作为测试一部分运行的GoLang示例上仍然失败。

例如,这里有一个例子:

func Example() { 
    now := time.Date(2017, time.February, 1, 7, 51, 0, 0, time.Local) 

    // instantiate a new Podcast 
    p := podcast.New(
     "Sample Podcasts", 
     "http://example.com/", 
     "An example Podcast", 
     &now, &now, 
    ) 

    // add some channel properties 
    p.ISubtitle = "A simple Podcast" 
    p.AddImage("http://example.com/podcast.jpg") 
    p.AddAuthor("Jane Doe", "[email protected]") 

    for i := int64(0); i < 2; i++ { 
     n := strconv.FormatInt(i, 10) 

     // create an Item 
     item := podcast.Item{ 
      Title:  "Episode " + n, 
      Description: "Description for Episode " + n, 
      ISubtitle: "A simple episode " + n, 
      PubDate:  &now, 
     } 
     // add a Download to the Item 
     item.AddEnclosure("http://example.com/"+n+".mp3", podcast.MP3, 55*(i+1)) 

     // add the Item and check for validation errors 
     if _, err := p.AddItem(item); err != nil { 
      os.Stderr.WriteString("item validation error: " + err.Error()) 
     } 
    } 

    // Podcast.Encode writes to an io.Writer 
    if err := p.Encode(os.Stdout); err != nil { 
     os.Stderr.WriteString("error writing to stdout: " + err.Error()) 
    } 

    // Output: 
    // <?xml version="1.0" encoding="UTF-8"?> 
    // <rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"> 
    // <channel> 
    //  <title>Sample Podcasts</title> 
    //  <link>http://example.com/</link> 
    //  <description>An example Podcast</description> 
    //  <generator>go podcast v1.0.0 (github.com/eduncan911/podcast)</generator> 
    //  <language>en-us</language> 
    //  <lastBuildDate>Wed, 01 Feb 2017 07:51:00 -0500</lastBuildDate> 
    //  <managingEditor>[email protected] (Jane Doe)</managingEditor> 
    //  <pubDate>Wed, 01 Feb 2017 07:51:00 -0500</pubDate> 
    //  <image> 
    //  <url>http://example.com/podcast.jpg</url> 
    //  </image> 
    //  <itunes:author>[email protected] (Jane Doe)</itunes:author> 
    //  <itunes:subtitle>A simple Podcast</itunes:subtitle> 
    //  <itunes:image href="http://example.com/podcast.jpg"></itunes:image> 
    //  <item> 
    //  <guid>http://example.com/0.mp3</guid> 
    //  <title>Episode 0</title> 
    //  <link>http://example.com/0.mp3</link> 
    //  <description>Description for Episode 0</description> 
    //  <pubDate>Wed, 01 Feb 2017 07:51:00 -0500</pubDate> 
    //  <enclosure url="http://example.com/0.mp3" length="55" type="audio/mpeg"></enclosure> 
    //  <itunes:author>[email protected] (Jane Doe)</itunes:author> 
    //  <itunes:subtitle>A simple episode 0</itunes:subtitle> 
    //  <itunes:image href="http://example.com/podcast.jpg"></itunes:image> 
    //  <itunes:duration>55</itunes:duration> 
    //  </item> 
    //  <item> 
    //  <guid>http://example.com/1.mp3</guid> 
    //  <title>Episode 1</title> 
    //  <link>http://example.com/1.mp3</link> 
    //  <description>Description for Episode 1</description> 
    //  <pubDate>Wed, 01 Feb 2017 07:51:00 -0500</pubDate> 
    //  <enclosure url="http://example.com/1.mp3" length="110" type="audio/mpeg"></enclosure> 
    //  <itunes:author>[email protected] (Jane Doe)</itunes:author> 
    //  <itunes:subtitle>A simple episode 1</itunes:subtitle> 
    //  <itunes:image href="http://example.com/podcast.jpg"></itunes:image> 
    //  <itunes:duration>110</itunes:duration> 
    //  </item> 
    // </channel> 
    // </rss> 
} 

下面就来具体的特拉维斯构建失败go test的链接,即使它在本地运行:

https://travis-ci.org/eduncan911/podcast/builds/198093154

$ go test -covermode count -coverprofile cover.out 
--- FAIL: Example (0.00s) 
got: 
<?xml version="1.0" encoding="UTF-8"?> 
...(omitted) 

want: 
<?xml version="1.0" encoding="UTF-8"?> 
...(omitted) 

go test命令通常在macOS,Windows 10 VM和EC2 Ubuntu实例中本地运行。

这是只有特拉维斯不能运行go test,举例。

如果我跳过实例,然后通过测试用:

$ go test -run Test -covermode count -coverprofile cover.out 

但是,这违背了目的:

  1. 验证的例子
  2. 从97%降价的代码覆盖率报告降至43%

(是的,我使用范例作为代码覆盖的一部分 - 一部分的博客p ost我试图写,并使用特拉维斯来显示它。但是,呃,哎呀!特拉维斯错误!)

我怀疑特拉维斯是干什么用stderr和/或stdout时髦的东西,将输出重定向到控制台/日志这可能会阻止go test从看到的结果。

回答

3

特拉维斯得到的和想要的值不相同。它们与时区偏移量不同。

time.Local在您的本地计算机上为-0500,在Travis上为+0000。使用time.UTC或与代码运行的系统无关的其他某个位置运行:

now := time.Date(2017, time.February, 1, 7, 51, 0, 0, time.UTC) 
+0

omg,我不能这样做!这就是我在半夜与孩子们一起编码的过程。谢谢! – eduncan911