diff --git a/lib/modules/datasource/pypi/__fixtures__/versions-html-with-whitespaces.html b/lib/modules/datasource/pypi/__fixtures__/versions-html-with-whitespaces.html new file mode 100644 index 0000000000000000000000000000000000000000..8d0f828c6d3fc3dc2f15d3f3ca2c83e1b1b26538 --- /dev/null +++ b/lib/modules/datasource/pypi/__fixtures__/versions-html-with-whitespaces.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html><head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <title> Links for package with extra whitespaces </title> + </head> + <body> + <h1> Links for package with extra whitespaces </h1> + <a href=""> + package_with_whitespaces-2.0.0.tar.gz + </a><br> + <a href=""> package_with_whitespaces-2.0.1-py3-none-any.whl </a><br> + <a href=""> package_with_whitespaces-2.0.2-py3-none-any.whl</a><br> + <a href="">package_with_whitespaces-2.0.2.tar.gz </a><br> +</body></html> diff --git a/lib/modules/datasource/pypi/index.spec.ts b/lib/modules/datasource/pypi/index.spec.ts index 4172900b268d96754c5886f0e6730286a29fcdf2..c4cb541f252db5e0bc64ee5a19f180db3c6f9855 100644 --- a/lib/modules/datasource/pypi/index.spec.ts +++ b/lib/modules/datasource/pypi/index.spec.ts @@ -14,6 +14,9 @@ const dataRequiresPythonResponse = Fixtures.get( const mixedHyphensResponse = Fixtures.get('versions-html-mixed-hyphens.html'); const mixedCaseResponse = Fixtures.get('versions-html-mixed-case.html'); const withPeriodsResponse = Fixtures.get('versions-html-with-periods.html'); +const withWhitespacesResponse = Fixtures.get( + 'versions-html-with-whitespaces.html', +); const hyphensResponse = Fixtures.get('versions-html-hyphens.html'); const baseUrl = 'https://pypi.org/pypi'; @@ -430,6 +433,26 @@ describe('modules/datasource/pypi/index', () => { ]); }); + it('process data from simple endpoint with extra whitespaces in html', async () => { + httpMock + .scope('https://some.registry.org/simple/') + .get('/package-with-whitespaces/') + .reply(200, withWhitespacesResponse); + const config = { + registryUrls: ['https://some.registry.org/simple/'], + }; + const res = await getPkgReleases({ + datasource, + ...config, + packageName: 'package-with-whitespaces', + }); + expect(res?.releases).toMatchObject([ + { version: '2.0.0' }, + { version: '2.0.1' }, + { version: '2.0.2' }, + ]); + }); + it('returns null for empty response', async () => { httpMock .scope('https://some.registry.org/simple/') diff --git a/lib/modules/datasource/pypi/index.ts b/lib/modules/datasource/pypi/index.ts index 11e4c2dd5fb805a2e8033a1148a6b80127232167..4aab61635c9cfb8956a8156c197f2ab3ae6ad0fb 100644 --- a/lib/modules/datasource/pypi/index.ts +++ b/lib/modules/datasource/pypi/index.ts @@ -246,7 +246,7 @@ export class PypiDatasource extends Datasource { const releases: Releases = {}; for (const link of Array.from(links)) { const version = PypiDatasource.extractVersionFromLinkText( - link.text, + link.text?.trim(), packageName, ); if (version) {