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(up): Add UP tests specific to aries in the repository. #142

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/aries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,12 @@ jobs:
run: git submodule update --init # get our own copy of unified-planing repos
- name: Install python dependencies
run: python3 -m pip install -r planning/unified/requirements.txt "numpy<2"
- name: Validator tests
run: |
source planning/unified/dev.env
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries-val
- name: Install just
run: curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to .
- name: Solver tests
run: |
source planning/unified/dev.env
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries
run: ./just ci-up-solve
- name: Validator tests
run: ./just ci-up-val


tests: # Meta-job that only requires all test-jobs to pass
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ ci: ci-up-solve ci-up-val

# Run planning tests for UP integration
ci-up-solve:
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries -e up_aries_tests

# Run validation tests for UP integration
ci-up-val:
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries-val
python3 planning/unified/deps/unified-planning/up_test_cases/report.py aries-val -e up_aries_tests

# Solve a UP test case
up-solve problem:
Expand Down
26 changes: 26 additions & 0 deletions planning/unified/plugin/up_aries_tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from unified_planning.shortcuts import *
from unified_planning.test import TestCase
import unified_planning.model.scheduling as sched


def get_test_cases():
"""Creates on test case for each function starting with `test_` in the file"""
res = {}
gens = [(name.removeprefix('test_'), fn) for name, fn in globals().items()
if callable(fn) and fn.__module__ == __name__ and name.startswith('test_')]

for (name, generator) in gens:
print(name)
res[name] = generator()

return res


def test_sched_bool_param():
problem = sched.SchedulingProblem()

a = problem.add_activity('a', 10)

a.add_parameter('p', BoolType())

return TestCase(problem=problem, solvable=True)
Loading