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

test_sqlite3.test_dbapi: Extended error codes aren't actually tested #93115

Closed
The-Compiler opened this issue May 23, 2022 · 2 comments · Fixed by #93116
Closed

test_sqlite3.test_dbapi: Extended error codes aren't actually tested #93115

The-Compiler opened this issue May 23, 2022 · 2 comments · Fixed by #93116
Labels
tests Tests in the Lib/test dir topic-sqlite3 type-bug An unexpected behavior, bug, or error

Comments

@The-Compiler
Copy link
Contributor

Bug report

In 456e27a / GH-28076, @erlend-aasland added extended error codes to test_module_constants - however, they use sqlite.version_info, documented as (emphasis mine):

The version number of this module, as a tuple of integers. This is not the version of the SQLite library.

Which has been set to "2.6.0" for the past 12 years or so:

#define PYSQLITE_VERSION "2.6.0"

Causing that code to never be run at all. sqlite.sqlite_version_info should probably be used instead.

Additionally, the last statement does:

const.append("SQLITE_IOERR_CORRUPTFS")

instead of consts.append, which would cause a NameError if the conditions above were correct.

Preparing a PR to fix this.

(Found by running flake8 over Lib/ out of curiosity, see #93010 (comment))

Your environment

  • CPython versions tested on: The affected code was added in v3.11.0a2.
  • Operating system and architecture: Archlinux x86_64
@erlend-aasland
Copy link
Contributor

Thanks!

@erlend-aasland erlend-aasland moved this to TODO: Bugs in sqlite3 issues May 23, 2022
@erlend-aasland erlend-aasland added the tests Tests in the Lib/test dir label May 23, 2022
Repository owner moved this from TODO: Bugs to Done in sqlite3 issues May 23, 2022
miss-islington pushed a commit to miss-islington/cpython that referenced this issue May 23, 2022
miss-islington added a commit that referenced this issue May 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tests Tests in the Lib/test dir topic-sqlite3 type-bug An unexpected behavior, bug, or error
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants