[aur-dev] [PATCH 4/4] Add TESTING instructions for web interface

Lukas Fleischer lfleischer at archlinux.org
Wed Mar 1 19:28:03 UTC 2017


On Wed, 01 Mar 2017 at 07:46:21, Mark Weiman wrote:
> +Setup Testing Environment
> +=========================
> +
> +Note that this setup is only to test the web interface. If you need to have a
> +full aurweb instance with cgit, ssh interface, etc, follow the directions in
> +INSTALL.
> +
> +1) Clone the aurweb project:
> +
> +    $ git clone git://git.archlinux.org/aurweb.git
> +
> +2) Install php and necessary modules:
> +
> +    # pacman -S php php-sqlite sqlite
> +
> +3) Prepare the testing database:
> +
> +    $ cd /path/to/aurweb/schema

This needs to be updated to work with the two patches I just submitted.
An additional

    $ make

should be sufficient.

> +    $ ./gendummydata.py out.sql
> +    $ sqlite3 ../aurweb.sqlite3 < aur-schema-sqlite.sql
> +    $ sqlite3 ../aurweb.sqlite3 < out.sql
> +
> +4) Copy conf/config.proto to conf/config and adjust the configuration
> +   (pay attention to disable_http_login, enable_maintenance and aur_location).
> +
> +   Be sure to change backend to sqlite and name to the file location of your
> +   created test database.
> +
> +5) Run PHP Command Line server

Minor nit: I would change this line to "Run the PHP built-in web server"
and also add a colon at the end.

This looks great otherwise! It would be nice if you could fix this
last sentence, add the additional `make` invocation and resubmit. In the
meantime, I will queue patches two and three of this series in pu.
Thanks!

> +
> +   $ AUR_CONFIG='/path/to/aurweb/conf/config' php -S localhost:8080 -t /path/to/aurweb/web/html
> -- 
> 2.12.0


More information about the aur-dev mailing list