ArrayIndexOutOfBoundsException use karate 0.8.0
my code:
@upload @offline
Feature: upload one mp3 file
Background:
* url 'http://xx.test.com'
* def Sign = Java.type('token.Sign')
Scenario:
* def ck = Sign.execute(false)
* print ck
* path '/rest/n/test/up'
* cookie userId = ck.id
* cookie tes.api_st = ck.st
* cookie did = ck.did
* multipart field title = 'hello'
* multipart file ringtone = read: '123.mp3', filename: '123.mp3', contentType: 'audio/mp3'
* method post
* status 200
* match response contains result: 1
And mvn test -Dtest=xxx
will output the below info:
19:39:57.073 [main] ERROR com.intuit.karate - java.lang.ArrayIndexOutOfBoundsException: -1, http call failed after 1542281997073 milliseconds for URL: http://tianou123.test.gifshow.com/rest/n/test/up
19:39:57.073 [main] ERROR com.intuit.karate - http request failed: -1
19:39:57.925 [main] WARN io.sentry.dsn.Dsn - *** Couldn't find a suitable DSN, Sentry operations will do nothing! See documentation: https://docs.sentry.io/clients/java/ ***
Failed scenarios:
xxx/upload.feature:8 # Scenario:
So, I don't know why. Because the request not arrive the backend server.
And the request can run OK using postman.
karate
add a comment |
my code:
@upload @offline
Feature: upload one mp3 file
Background:
* url 'http://xx.test.com'
* def Sign = Java.type('token.Sign')
Scenario:
* def ck = Sign.execute(false)
* print ck
* path '/rest/n/test/up'
* cookie userId = ck.id
* cookie tes.api_st = ck.st
* cookie did = ck.did
* multipart field title = 'hello'
* multipart file ringtone = read: '123.mp3', filename: '123.mp3', contentType: 'audio/mp3'
* method post
* status 200
* match response contains result: 1
And mvn test -Dtest=xxx
will output the below info:
19:39:57.073 [main] ERROR com.intuit.karate - java.lang.ArrayIndexOutOfBoundsException: -1, http call failed after 1542281997073 milliseconds for URL: http://tianou123.test.gifshow.com/rest/n/test/up
19:39:57.073 [main] ERROR com.intuit.karate - http request failed: -1
19:39:57.925 [main] WARN io.sentry.dsn.Dsn - *** Couldn't find a suitable DSN, Sentry operations will do nothing! See documentation: https://docs.sentry.io/clients/java/ ***
Failed scenarios:
xxx/upload.feature:8 # Scenario:
So, I don't know why. Because the request not arrive the backend server.
And the request can run OK using postman.
karate
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51
add a comment |
my code:
@upload @offline
Feature: upload one mp3 file
Background:
* url 'http://xx.test.com'
* def Sign = Java.type('token.Sign')
Scenario:
* def ck = Sign.execute(false)
* print ck
* path '/rest/n/test/up'
* cookie userId = ck.id
* cookie tes.api_st = ck.st
* cookie did = ck.did
* multipart field title = 'hello'
* multipart file ringtone = read: '123.mp3', filename: '123.mp3', contentType: 'audio/mp3'
* method post
* status 200
* match response contains result: 1
And mvn test -Dtest=xxx
will output the below info:
19:39:57.073 [main] ERROR com.intuit.karate - java.lang.ArrayIndexOutOfBoundsException: -1, http call failed after 1542281997073 milliseconds for URL: http://tianou123.test.gifshow.com/rest/n/test/up
19:39:57.073 [main] ERROR com.intuit.karate - http request failed: -1
19:39:57.925 [main] WARN io.sentry.dsn.Dsn - *** Couldn't find a suitable DSN, Sentry operations will do nothing! See documentation: https://docs.sentry.io/clients/java/ ***
Failed scenarios:
xxx/upload.feature:8 # Scenario:
So, I don't know why. Because the request not arrive the backend server.
And the request can run OK using postman.
karate
my code:
@upload @offline
Feature: upload one mp3 file
Background:
* url 'http://xx.test.com'
* def Sign = Java.type('token.Sign')
Scenario:
* def ck = Sign.execute(false)
* print ck
* path '/rest/n/test/up'
* cookie userId = ck.id
* cookie tes.api_st = ck.st
* cookie did = ck.did
* multipart field title = 'hello'
* multipart file ringtone = read: '123.mp3', filename: '123.mp3', contentType: 'audio/mp3'
* method post
* status 200
* match response contains result: 1
And mvn test -Dtest=xxx
will output the below info:
19:39:57.073 [main] ERROR com.intuit.karate - java.lang.ArrayIndexOutOfBoundsException: -1, http call failed after 1542281997073 milliseconds for URL: http://tianou123.test.gifshow.com/rest/n/test/up
19:39:57.073 [main] ERROR com.intuit.karate - http request failed: -1
19:39:57.925 [main] WARN io.sentry.dsn.Dsn - *** Couldn't find a suitable DSN, Sentry operations will do nothing! See documentation: https://docs.sentry.io/clients/java/ ***
Failed scenarios:
xxx/upload.feature:8 # Scenario:
So, I don't know why. Because the request not arrive the backend server.
And the request can run OK using postman.
karate
karate
edited Nov 15 '18 at 11:57
thinkerou
asked Nov 15 '18 at 11:47
thinkerouthinkerou
7962822
7962822
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51
add a comment |
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318798%2farrayindexoutofboundsexception-use-karate-0-8-0%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318798%2farrayindexoutofboundsexception-use-karate-0-8-0%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm sorry unless I have a way to replicate - cannot help: github.com/intuit/karate/wiki/How-to-Submit-an-Issue - else can you try debug the Java code and Apache code and see what is going on ?
– Peter Thomas
Nov 15 '18 at 12:02
@PeterThomas thanks, my error: because one project is ok, but other project is error, the same code.
– thinkerou
Nov 15 '18 at 12:51