mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Add pytest hooks to ignore all functional tests if pytest_bdd is not installed. - Update pytest hooks to skip tests in file named 'test_functional.py' if --include-functional argument is not provided. - Move functional_tests/install.py into plinth/tests/functional and update reference in Vagrantfile. - Move scenario files into individual app folders. Rename them after the app they are testing. Merge TODO items listed in todo.org into corresponding feature files. - Add test_functional.py in each app to build tests from the features file using pytest_bdd. - Move all step_definitions, support and data into plinth/tests/functional/. Include all step_definitions from conftest.py. Update to relative imports instead of absolute imports. Tests performed: - Run py.test-3 --collect-only shows all functional tests and lists 574 tests. No errors show that name of feature files are correct. The number says that all functional test features are included. - Remove pytest_bdd (or modify the import name) and run py.test-3 --collect-only skips collecting all functional tests and shows only 300+ tests. - Run functional tests for a few apps with py.test-3 --include-functional -m app. For storage, deluge. - Run unit tests with py.test-3. Functional tests are listed by skipped. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
65 lines
2.2 KiB
Ruby
65 lines
2.2 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
require 'etc'
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "freedombox/plinth-dev"
|
|
config.vm.network "forwarded_port", guest: 443, host: 4430
|
|
config.vm.network "forwarded_port", guest: 445, host: 4450
|
|
config.vm.synced_folder ".", "/vagrant", owner: "plinth", group: "plinth"
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.cpus = Etc.nprocessors
|
|
vb.memory = 2048
|
|
vb.linked_clone = true
|
|
end
|
|
config.vm.provision "shell", run: 'always', inline: <<-SHELL
|
|
# Disable automatic upgrades
|
|
/vagrant/actions/upgrades disable-auto
|
|
# Do not run system plinth
|
|
systemctl stop plinth
|
|
systemctl disable plinth
|
|
SHELL
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
cd /vagrant/
|
|
./setup.py install
|
|
systemctl daemon-reload
|
|
# Stop any ongoing upgrade
|
|
killall -9 unattended-upgr
|
|
dpkg --configure -a
|
|
apt -f install
|
|
apt-get update
|
|
# In case new dependencies conflict with old dependencies
|
|
apt-mark hold freedombox
|
|
DEBIAN_FRONTEND=noninteractive apt-get install --no-upgrade -y $(plinth --list-dependencies)
|
|
apt-mark unhold freedombox
|
|
# Install ncurses-term
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y ncurses-term
|
|
echo 'alias run-develop="sudo -u plinth /vagrant/run --develop"' >> /home/vagrant/.bashrc
|
|
SHELL
|
|
config.vm.provision "tests", run: "never", type: "shell", path: "plinth/tests/functional/install.sh"
|
|
config.vm.post_up_message = "FreedomBox virtual machine is ready
|
|
for development. You can run the development version of Plinth using
|
|
the following command.
|
|
$ vagrant ssh
|
|
$ sudo -u plinth /vagrant/run --develop
|
|
Plinth will be available at https://localhost:4430/plinth (with
|
|
an invalid SSL certificate).
|
|
"
|
|
|
|
config.trigger.after [:up, :resume, :reload] do |trigger|
|
|
trigger.info = "Set plinth user permissions for development environment"
|
|
trigger.run_remote = {
|
|
path: "vagrant-scripts/plinth-user-permissions.py"
|
|
}
|
|
end
|
|
config.trigger.before :destroy do |trigger|
|
|
trigger.warn = "Performing cleanup steps"
|
|
trigger.run = {
|
|
path: "vagrant-scripts/post-box-destroy.py"
|
|
}
|
|
end
|
|
config.vm.boot_timeout=1200
|
|
end
|