Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions selenium/test/basic-auth/imports/users.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
"vhosts": [
{
"name": "/"
},
{
"name": "other"
}
],
"permissions": [
Expand All @@ -66,6 +69,13 @@
"write": ".*",
"read": ".*"
},
{
"user": "guest",
"vhost": "other",
"configure": ".*",
"write": ".*",
"read": ".*"
},
{
"user": "management",
"vhost": "/",
Expand Down
12 changes: 10 additions & 2 deletions selenium/test/exchanges/management.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('Exchange management', function () {
})

it('display summary of exchanges', async function () {
assert.equal("All exchanges (8)", await exchanges.getPagingSectionHeaderText())
assert.equal("All exchanges (15)", await exchanges.getPagingSectionHeaderText())
})

it('list all default exchanges', async function () {
Expand All @@ -46,7 +46,15 @@ describe('Exchange management', function () {
["/", "amq.match", "headers"],
["/", "amq.rabbitmq.event", "topic"],
["/", "amq.rabbitmq.trace", "topic"],
["/", "amq.topic", "topic"]
["/", "amq.topic", "topic"],

["other", "(AMQP default)", "direct"],
["other", "amq.direct", "direct"],
["other", "amq.fanout", "fanout"],
["other", "amq.headers", "headers"],
["other", "amq.match", "headers"],
["other", "amq.rabbitmq.trace", "topic"],
["other", "amq.topic", "topic"]
]
console.log("e :" + actual_table)
assert.deepEqual(actual_table, expected_table)
Expand Down
Loading