Opened 7 months ago

Closed 6 months ago

#5566 closed task (fixed)

Add CI testing under sandboxed system

Reported by: strk Owned by: robe
Priority: medium Milestone: Website Management, Bots
Component: QA/buildbots Version:
Keywords: pgextwlist Cc:

Description

We have a few bugs reported in sandboxed systems, like #5212, #5550 and likely #5545 so having proper CI coverage under those condition would be useful.

I've already pgextwlist in the build-test docker image, next we'll need a recipe to make use of that by CI.

https://github.com/dimitri/pgextwlist.git

Change History (11)

comment:1 by strk, 7 months ago

I've added preconfiguration of pgextwlist in the docker image, and granted postgis_reg_unprivileged_user user db creation privileges with https://git.osgeo.org/gitea/postgis/postgis-docker/commit/b6a836fd3421b15bd272dfc9f257cddbc7e24e5f

Once the image build completes ( https://debbie.postgis.net/view/PostGIS/job/PostGIS-docker/52/ ) we can experiment with using the unprivileged user for testing.

comment:2 by strk, 7 months ago

Docker image is ready, work in progress pull request to use an non-superuser account to run tests is in https://git.osgeo.org/gitea/postgis/postgis/pulls/158

comment:3 by strk, 7 months ago

As I found out empirically, "test using non-superuser account" is too generic: only EXTENSION based tests can run as non-superuser when using pgextwlist (and maybe in the future "trusted" extension - see #5567)

So we need SUPERUSER for script based and can use another role for extension based (if the target database setup allows for that). Maybe a run_test.pl switch could request using a special role for extension via a --extension-test-role or something along those lines.

comment:4 by strk, 6 months ago

I've settled for a POSTGIS_REGRESS_ROLE_EXT_CREATOR environment variable support in run_test.pl which landed in the master branch with [52bfcd5faa3a7577292814d0a5a17c5698a9032f/git]

In https://git.osgeo.org/gitea/postgis/postgis/pulls/158 I'm experimenting with that.

comment:5 by Sandro Santilli <strk@…>, 6 months ago

In 5739cacd/git:

run_test.pl: add POSTGIS_REGRESS_DB_OWNER env support

Allows specifying a DB role to be given ownership of the regress
database and be used to create extension of POSTGIS_REGRESS_EXT_CREATOR
is not also provided to override that.

References #5212
References #5566
References #5567

comment:6 by Sandro Santilli <strk@…>, 6 months ago

In b2ee709/git:

run_test.pl: add —after-create-db-script support

This can be used to configure target database, for example to
enable/configure pgextwlist

References #5566

comment:7 by strk, 6 months ago

CI is failing due to our own script refusing to package functions owned by a different owner than the extension owner: https://woodie.osgeo.org/repos/30/pipeline/1441/4#L5492

Should we relax that check and accept mixed ownership as long as the owner of existing function is a superuser ?

comment:8 by strk, 6 months ago

The ownership check was implemented in commit [06f49e8dc83cfd7319709518ba479a3fd95e5000/git] referencing #4648

comment:9 by Sandro Santilli <strk@…>, 6 months ago

In 85395aa/git:

run_test.pl: use db ext creator for upgrading too

References #5566

comment:10 by Sandro Santilli <strk@…>, 6 months ago

In e2bf40c/git:

Set ownership of packaged functions to extension owner

Still check that the functions were owned by a superuser.

References #4648
References #5545
References #5566

comment:11 by Sandro Santilli <strk@…>, 6 months ago

Resolution: fixed
Status: newclosed

In 5c37f97/git:

[woodie] Test with unprivileged user under pgextwlist

Closes #5566

Note: See TracTickets for help on using tickets.