grim/convey

Rename convey-dev.yml to dev-convey.yml so that the clean task won't delete it
// Convey
// Copyright 2016-2018 Gary Kramlich <grim@reaperworld.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package runtime
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestContainersRunning(t *testing.T) {
containers := NewContainers()
assert.Empty(t, containers.GetRunning())
containers.MarkRunning("foo")
assert.Len(t, containers.GetRunning(), 1)
assert.ElementsMatch(t, containers.GetRunning(), []string{"foo"})
containers.MarkRunning("bar")
assert.Len(t, containers.GetRunning(), 2)
assert.ElementsMatch(t, containers.GetRunning(), []string{"foo", "bar"})
containers.UnmarkRunning("bar")
assert.Len(t, containers.GetRunning(), 1)
assert.ElementsMatch(t, containers.GetRunning(), []string{"foo"})
}
func TestContainersDetached(t *testing.T) {
containers := NewContainers()
assert.Empty(t, containers.GetDetached())
containers.MarkDetached("foo")
assert.Len(t, containers.GetDetached(), 1)
assert.ElementsMatch(t, containers.GetDetached(), []string{"foo"})
containers.MarkDetached("bar")
assert.Len(t, containers.GetDetached(), 2)
assert.ElementsMatch(t, containers.GetDetached(), []string{"foo", "bar"})
}