Skip to content

Commit 934ff06

Browse files
Delete java amqp10 from docker and test
1 parent 5c381e5 commit 934ff06

File tree

6 files changed

+0
-225
lines changed

6 files changed

+0
-225
lines changed

selenium/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ COPY package.json package.json
77

88
FROM base as test
99
RUN npm install
10-
RUN mkdir -p /code/amqp10-roundtriptest
11-
COPY amqp10-roundtriptest /code/amqp10-roundtriptest
12-
RUN mvn -f /code/amqp10-roundtriptest package
1310

1411
ENTRYPOINT [ "npm" ]
1512
CMD [ "" ]

selenium/amqp10-roundtriptest/pom.xml

Lines changed: 0 additions & 103 deletions
This file was deleted.

selenium/amqp10-roundtriptest/run

Lines changed: 0 additions & 16 deletions
This file was deleted.

selenium/amqp10-roundtriptest/src/main/java/com/rabbitmq/amqp1_0/RoundTripTest.java

Lines changed: 0 additions & 96 deletions
This file was deleted.

selenium/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"scripts": {
77
"fakeportal": "node fakeportal/app.js",
88
"fakeproxy": "node fakeportal/proxy.js",
9-
"amqp10_roundtriptest": "eval $(cat $ENV_FILE ) && amqp10-roundtriptest/run",
109
"test": " eval $(cat $ENV_FILE ) && mocha --recursive --trace-warnings --timeout 40000"
1110
},
1211
"keywords": [],

selenium/test/authnz-msg-protocols/amqp10.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ const assert = require('assert')
22
const { tokenFor, openIdConfiguration } = require('../utils')
33
const { reset, expectUser, expectVhost, expectResource, allow, verifyAll } = require('../mock_http_backend')
44
const { open: openAmqp, once: onceAmqp, on: onAmqp, close: closeAmqp } = require('../amqp')
5-
const {execSync} = require('child_process')
65

76
var receivedAmqpMessageCount = 0
87
var untilConnectionEstablished = new Promise((resolve, reject) => {
@@ -30,9 +29,6 @@ describe('Having AMQP 1.0 protocol enabled and the following auth_backends: ' +
3029
let expectations = []
3130
let username = process.env.RABBITMQ_AMQP_USERNAME
3231
let password = process.env.RABBITMQ_AMQP_PASSWORD
33-
let usemtls = process.env.AMQP_USE_MTLS
34-
let amqpClientCommand = "npm run amqp10_roundtriptest" +
35-
(usemtls ? "" : " " + username + " " + password)
3632
let amqp;
3733

3834
before(function () {
@@ -66,8 +62,6 @@ describe('Having AMQP 1.0 protocol enabled and the following auth_backends: ' +
6662
amqp.sender.send({body:'second message'})
6763
await untilMessageReceived
6864
assert.equal(2, receivedAmqpMessageCount)
69-
70-
//console.log(execSync(amqpClientCommand).toString())
7165
})
7266

7367
after(function () {

0 commit comments

Comments
 (0)