Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError [ERR_INVALID_URL]: Invalid URL #5458

Closed
zWingz opened this issue Jan 10, 2023 · 9 comments · Fixed by #5528
Closed

TypeError [ERR_INVALID_URL]: Invalid URL #5458

zWingz opened this issue Jan 10, 2023 · 9 comments · Fixed by #5528

Comments

@zWingz
Copy link

zWingz commented Jan 10, 2023

Describe the bug

const axios = require('axios');
axios.get('/user/12345').then((response) => {
  console.log(response.data);
  console.log(response.status);
  console.log(response.statusText);
  console.log(response.headers);
  console.log(response.config);
});

throw error
image
by the code

To Reproduce

No response

Code snippet

No response

Expected behavior

No response

Axios Version

1.2.1

Adapter Version

http

Browser

No response

Browser Version

No response

Node.js Version

v16

OS

No response

Additional Library Versions

No response

Additional context/Screenshots

No response

@huineng
Copy link

huineng commented Feb 3, 2023

i had this with a test

 FAIL  src/server/config/tests/axios.spec.ts (10.587 s)
  config -> axios -> handleAxiosError
    ✓ handleAxiosError: should reject (4 ms)
    ✕ handleAxiosError: should reject (10002 ms)

  ● config -> axios -> handleAxiosError › handleAxiosError: should reject

    TypeError: Invalid URL

      3 |
      4 | export const sendAxiosRequest = async (config: RawAxiosRequestConfig): Promise<AxiosResponse> =>
    > 5 |     axios.request(config).catch(handleAxiosError);
        |           ^
      6 |

      at dispatchHttpRequest (node_modules/axios/lib/adapters/http.js:186:20)
      at http (node_modules/axios/lib/adapters/http.js:122:10)
      at Axios.dispatchRequest (node_modules/axios/lib/core/dispatchRequest.js:51:10)
      at Axios.request (node_modules/axios/lib/core/Axios.js:142:33)
      at Function.wrap [as request] (node_modules/axios/lib/helpers/bind.js:5:15)
      at sendAxiosRequest (src/server/config/axios/send_axios_request.ts:5:11)
      at Object.<anonymous> (src/server/config/tests/axios.spec.ts:22:38)

  ● config -> axios -> handleAxiosError › handleAxiosError: should reject

    thrown: "Exceeded timeout of 10000 ms for a test.
    Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test."

      19 |     });
      20 |
    > 21 |     test('handleAxiosError: should reject', async () => {
         |     ^
      22 |         await expect(sendAxiosRequest({ url: undefined })).rejects.toBeDefined();
      23 |     });
      24 | });

      at src/server/config/tests/axios.spec.ts:21:5
      at Object.<anonymous> (src/server/config/tests/axios.spec.ts:16:1)

Test Suites: 1 failed, 1 total
Tests:       1 failed, 1 passed, 2 total
Snapshots:   0 total
Time:        10.656 s

i reverted back to 1.3.0

@DigitalBrainJS
Copy link
Collaborator

You missed the base URL configuration when trying to use a relative URL on the server side.

@zhanglolo
Copy link

When i use axios and msw in node env, have the same issues, you can visit this discussions.
mswjs/msw#1521

@jghaanstra
Copy link

jghaanstra commented Feb 22, 2023

Just experienced the same thing. Happens on other invalid URL's as well, not related to the use of relative URL's. For instance http://192.168.0.285.

const axios = require('axios');
axios.get('http://192.168.0.285').then((response) => {
  console.log(response.data);
  console.log(response.status);
  console.log(response.statusText);
  console.log(response.headers);
  console.log(response.config);
});

Version 1.3.0 handles this correctly but 1.3.3 does not. Why is this issue closed?

@DigitalBrainJS
Copy link
Collaborator

DigitalBrainJS commented Feb 22, 2023

@jghaanstra 192.168.0.285 is an invalid IP address, so everything is correct

@jghaanstra
Copy link

jghaanstra commented Feb 22, 2023

@jghaanstra 192.168.0.285 is an invalid IP address, so everything is correct

@DigitalBrainJS , I'm aware it's not valid but I can not catch this error because the code crashes with the following stacktrace. On 1.3.0 the error is caught but not on 1.3.3.

node:internal/errors:465
    ErrorCaptureStackTrace(err);
    ^

TypeError [ERR_INVALID_URL]: Invalid URL
    at new NodeError (node:internal/errors:372:5)
    at URL.onParseError (node:internal/url:553:9)
    at new URL (node:internal/url:629:5)
    at dispatchHttpRequest (\node_modules\axios\dist\node\axios.cjs:2584:20)
    at new Promise (<anonymous>)
    at http (\node_modules\axios\dist\node\axios.cjs:2520:10)
    at Axios.dispatchRequest (\node_modules\axios\dist\node\axios.cjs:3481:10)
    at Axios.request (t\node_modules\axios\dist\node\axios.cjs:3831:33)
    at Axios.<computed> [as get] (\test\node_modules\axios\dist\node\axios.cjs:3857:17)
    at Function.wrap [as get] (\node_modules\axios\dist\node\axios.cjs:29:15) {
  input: 'http://192.168.0.285',
  code: 'ERR_INVALID_URL'
}

@DigitalBrainJS
Copy link
Collaborator

@jghaanstra I see. Your issue is unrelated to this ticket, but the regression bug has been confirmed. Thanks for the report! We'll fix this in the next release.

@iamgabrielsoft
Copy link

this still happens in version 1.6.5

@ipapast
Copy link

ipapast commented May 29, 2024

this still happens in version 1.6.5

hey, what issue do you refer to? Is it the uncaught error?
I think I still see it on 1.6.7 too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment