blob: 3843b9df2e40b363f87af092ae6ef5eb66ab055e [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package gremlingo
import (
"fmt"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestChannelResultSet(t *testing.T) {
const mockID = "mockID"
t.Run("Test ResultSet test getter/setters.", func(t *testing.T) {
r := newChannelResultSet()
testAggregateTo := "test2"
r.setAggregateTo(testAggregateTo)
assert.Equal(t, r.GetAggregateTo(), testAggregateTo)
})
t.Run("Test ResultSet close.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
assert.NotPanics(t, func() { channelResultSet.Close() })
})
t.Run("Test ResultSet one.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
AddResults(channelResultSet, 10)
idx := 0
for i := 0; i < 10; i++ {
result, ok, err := channelResultSet.One()
assert.Nil(t, err)
assert.True(t, ok)
assert.Equal(t, result.GetString(), fmt.Sprintf("%v", idx))
idx++
}
go closeAfterTime(500, channelResultSet)
res, ok, err := channelResultSet.One()
assert.Nil(t, err)
assert.False(t, ok)
assert.Nil(t, res)
})
t.Run("Test ResultSet one Paused.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
go AddResultsPause(channelResultSet, 10, 500)
idx := 0
for i := 0; i < 10; i++ {
result, ok, err := channelResultSet.One()
assert.Nil(t, err)
assert.True(t, ok)
assert.Equal(t, result.GetString(), fmt.Sprintf("%v", idx))
idx++
}
go closeAfterTime(500, channelResultSet)
result, ok, err := channelResultSet.One()
assert.Nil(t, err)
assert.False(t, ok)
assert.Nil(t, result)
})
t.Run("Test ResultSet one close.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
channelResultSet.Close()
})
t.Run("Test ResultSet All.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
AddResults(channelResultSet, 10)
go closeAfterTime(500, channelResultSet)
results, err := channelResultSet.All()
assert.Nil(t, err)
for idx, result := range results {
assert.Equal(t, result.GetString(), fmt.Sprintf("%v", idx))
}
})
t.Run("Test ResultSet All close before.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
AddResults(channelResultSet, 10)
channelResultSet.Close()
results, err := channelResultSet.All()
assert.Nil(t, err)
assert.Equal(t, len(results), 10)
for idx, result := range results {
assert.Equal(t, result.GetString(), fmt.Sprintf("%v", idx))
}
})
t.Run("Test ResultSet IsEmpty before signal.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
go closeAfterTime(500, channelResultSet)
empty := channelResultSet.IsEmpty()
assert.True(t, empty)
})
t.Run("Test ResultSet IsEmpty after signal.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
channelResultSet.Close()
empty := channelResultSet.IsEmpty()
assert.True(t, empty)
})
t.Run("Test ResultSet IsEmpty after close.", func(t *testing.T) {
channelResultSet := newChannelResultSet()
go addAfterTime(500, channelResultSet)
empty := channelResultSet.IsEmpty()
assert.False(t, empty)
channelResultSet.One()
go closeAfterTime(500, channelResultSet)
empty = channelResultSet.IsEmpty()
assert.True(t, empty)
})
}
func AddResultsPause(resultSet ResultSet, count int, ticks time.Duration) {
for i := 0; i < count/2; i++ {
resultSet.addResult(&Result{i})
}
time.Sleep(ticks * time.Millisecond)
for i := count / 2; i < count; i++ {
resultSet.addResult(&Result{i})
}
}
func AddResults(resultSet ResultSet, count int) {
for i := 0; i < count; i++ {
resultSet.addResult(&Result{i})
}
}
func closeAfterTime(millisecondTicks time.Duration, resultSet ResultSet) {
time.Sleep(millisecondTicks * time.Millisecond)
resultSet.Close()
}
func addAfterTime(millisecondTicks time.Duration, resultSet ResultSet) {
time.Sleep(millisecondTicks * time.Millisecond)
resultSet.addResult(&Result{1})
}