Merge pull request #11 from bobrik/travis

Added travis-ci file
This commit is contained in:
Jérôme Renard 2014-07-02 13:48:52 +02:00
commit cdd62356b9
2 changed files with 30 additions and 2 deletions

22
.travis.yml Normal file
View File

@ -0,0 +1,22 @@
language: go
go:
- 1.1
- 1.2
- 1.3
- tip
env:
matrix:
- ES_VERSION=1.0.3
- ES_VERSION=1.1.2
- ES_VERSION=1.2.1
before_script:
- mkdir ${HOME}/elasticsearch
- wget http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
- tar -xzf elasticsearch-${ES_VERSION}.tar.gz -C ${HOME}/elasticsearch
- ${HOME}/elasticsearch/elasticsearch-${ES_VERSION}/bin/elasticsearch >/dev/null &
script:
- make test

View File

@ -585,11 +585,17 @@ func (s *GoesTestSuite) TestIndexStatus(c *C) {
expectedShards := Shard{Total: 2, Successful: 1, Failed: 0}
c.Assert(response.Shards, Equals, expectedShards)
primarySizeInBytes := response.Indices[indexName].Index["primary_size_in_bytes"].(float64)
sizeInBytes := response.Indices[indexName].Index["size_in_bytes"].(float64)
c.Assert(primarySizeInBytes > 0, Equals, true)
c.Assert(sizeInBytes > 0, Equals, true)
expectedIndices := map[string]IndexStatus{
indexName: IndexStatus{
Index: map[string]interface{}{
"primary_size_in_bytes": float64(99),
"size_in_bytes": float64(99),
"primary_size_in_bytes": primarySizeInBytes,
"size_in_bytes": sizeInBytes,
},
Translog: map[string]uint64{
"operations": 0,