177 lines
3.9 KiB
Go
177 lines
3.9 KiB
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cortezaproject/corteza-server/pkg/id"
|
|
mtypes "github.com/cortezaproject/corteza-server/pkg/messagebus/types"
|
|
"github.com/cortezaproject/corteza-server/store"
|
|
"github.com/cortezaproject/corteza-server/system/service"
|
|
"github.com/cortezaproject/corteza-server/system/types"
|
|
"github.com/cortezaproject/corteza-server/tests/helpers"
|
|
jsonpath "github.com/steinfletcher/apitest-jsonpath"
|
|
)
|
|
|
|
func (h helper) clearMessagebusQueues() {
|
|
h.noError(store.TruncateQueues(context.Background(), service.DefaultStore))
|
|
}
|
|
|
|
func (h helper) repoMakeMessagebusQueue(consumer ...string) *types.Queue {
|
|
res := &types.Queue{
|
|
ID: id.Next(),
|
|
Queue: rs(),
|
|
CreatedAt: time.Now(),
|
|
}
|
|
|
|
if len(consumer) == 0 {
|
|
res.Consumer = string(mtypes.ConsumerCorteza)
|
|
} else {
|
|
res.Consumer = consumer[0]
|
|
}
|
|
|
|
h.a.NoError(store.CreateQueue(context.Background(), service.DefaultStore, res))
|
|
|
|
return res
|
|
}
|
|
|
|
func (h helper) lookupByID(id uint64) *types.Queue {
|
|
res, err := store.LookupQueueByID(context.Background(), service.DefaultStore, id)
|
|
h.noError(err)
|
|
return res
|
|
}
|
|
|
|
func (h helper) lookupByQueue(queue string) *types.Queue {
|
|
res, err := store.LookupQueueByQueue(context.Background(), service.DefaultStore, queue)
|
|
h.noError(err)
|
|
return res
|
|
}
|
|
|
|
func TestQueueList(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
h.repoMakeMessagebusQueue()
|
|
h.repoMakeMessagebusQueue()
|
|
|
|
helpers.AllowMe(h, types.ComponentRbacResource(), "queues.search")
|
|
helpers.AllowMe(h, types.QueueRbacResource(0), "read")
|
|
|
|
h.apiInit().
|
|
Get("/queues/").
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
Assert(jsonpath.Len(`$.response.set`, 2)).
|
|
End()
|
|
}
|
|
|
|
func TestQueueRead(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
res := h.repoMakeMessagebusQueue()
|
|
|
|
helpers.AllowMe(h, types.ComponentRbacResource(), "queues.search")
|
|
helpers.AllowMe(h, types.QueueRbacResource(0), "read")
|
|
|
|
h.apiInit().
|
|
Get(fmt.Sprintf("/queues/%d", res.ID)).
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
End()
|
|
}
|
|
|
|
func TestQueueCreate(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
helpers.AllowMe(h, types.ComponentRbacResource(), "queue.create")
|
|
|
|
consumer := string(mtypes.ConsumerStore)
|
|
queue := rs()
|
|
|
|
h.apiInit().
|
|
Post("/queues").
|
|
FormData("consumer", consumer).
|
|
FormData("queue", queue).
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
End()
|
|
|
|
res := h.lookupByQueue(queue)
|
|
h.a.NotNil(res)
|
|
h.a.Equal(consumer, res.Consumer)
|
|
}
|
|
|
|
func TestQueueUpdate(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
consumer := string(mtypes.ConsumerRedis)
|
|
res := h.repoMakeMessagebusQueue()
|
|
res.Consumer = consumer
|
|
|
|
helpers.AllowMe(h, types.QueueRbacResource(0), "update")
|
|
|
|
h.apiInit().
|
|
Put(fmt.Sprintf("/queues/%d", res.ID)).
|
|
Header("Accept", "application/json").
|
|
JSON(helpers.JSON(res)).
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
End()
|
|
|
|
res = h.lookupByID(res.ID)
|
|
h.a.NotNil(res)
|
|
h.a.Equal(consumer, res.Consumer)
|
|
}
|
|
|
|
func TestQueueDelete(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
res := h.repoMakeMessagebusQueue()
|
|
|
|
helpers.AllowMe(h, types.QueueRbacResource(0), "delete")
|
|
|
|
h.apiInit().
|
|
Delete(fmt.Sprintf("/queues/%d", res.ID)).
|
|
Header("Accept", "application/json").
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
End()
|
|
|
|
res = h.lookupByID(res.ID)
|
|
h.a.NotNil(res)
|
|
h.a.NotNil(res.DeletedAt)
|
|
}
|
|
|
|
func TestQueueUnDelete(t *testing.T) {
|
|
h := newHelper(t)
|
|
h.clearMessagebusQueues()
|
|
|
|
res := h.repoMakeMessagebusQueue()
|
|
|
|
helpers.AllowMe(h, types.QueueRbacResource(0), "delete")
|
|
|
|
h.apiInit().
|
|
Post(fmt.Sprintf("/queues/%d/undelete", res.ID)).
|
|
Header("Accept", "application/json").
|
|
Expect(t).
|
|
Status(http.StatusOK).
|
|
Assert(helpers.AssertNoErrors).
|
|
End()
|
|
|
|
res = h.lookupByID(res.ID)
|
|
h.a.NotNil(res)
|
|
h.a.Nil(res.DeletedAt)
|
|
}
|