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

add iamc filter for tabulate/ list runs #54

Merged
merged 2 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 21 additions & 1 deletion ixmp4/data/db/run/filter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
from ixmp4.data.db import filters as base
from ixmp4.db import filters
from ixmp4.data.db.iamc.datapoint import get_datapoint_model
from ixmp4.data.db.iamc.timeseries import TimeSeries
from ixmp4.data.db.run.model import Run
from ixmp4.db import filters, utils


class IamcRunFilter(filters.BaseFilter, metaclass=filters.FilterMeta):
region: base.RegionFilter
variable: base.VariableFilter
unit: base.UnitFilter

def join(self, exc, session=None):
if not utils.is_joined(exc, TimeSeries):
exc = exc.join(TimeSeries, onclause=TimeSeries.run__id == Run.id)

model = get_datapoint_model(session)
if not utils.is_joined(exc, model):
exc = exc.join(model, onclause=model.time_series__id == TimeSeries.id)
return exc


class RunFilter(base.RunFilter, metaclass=filters.FilterMeta):
iamc: IamcRunFilter | filters.Boolean

def join(self, exc, **kwargs):
return exc
46 changes: 45 additions & 1 deletion tests/core/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from ixmp4 import IxmpError, Run

from ..utils import all_platforms
from ..utils import all_platforms, create_filter_test_data


def _expected_runs_table(*row_default):
Expand Down Expand Up @@ -93,3 +93,47 @@ def test_run_versions(self, test_mp, request):
# non-default version cannot be again set as un-default
with pytest.raises(IxmpError):
run2.unset_as_default()

def test_filter_run(self, test_mp, request):
test_mp = request.getfixturevalue(test_mp)
run1, _ = create_filter_test_data(test_mp)

res = test_mp.runs.tabulate(
default_only=False,
iamc={
"region": {"name": "Region 1"},
},
)
assert sorted(res["model"].tolist()) == ["Model 1"]
assert sorted(res["scenario"].tolist()) == ["Scenario 1"]

res = test_mp.runs.tabulate(
default_only=False,
iamc={
"region": {"name": "Region 3"},
},
)
assert sorted(res["model"].tolist()) == ["Model 1", "Model 1", "Model 2"]
assert sorted(res["scenario"].tolist()) == [
"Scenario 1",
"Scenario 1",
"Scenario 2",
]

run1.set_as_default()
res = test_mp.runs.tabulate(
iamc={
"variable": {"name": "Variable 1"},
"unit": {"name__in": ["Unit 3", "Unit 4"]},
}
)
assert sorted(res["model"].tolist()) == ["Model 2"]
assert sorted(res["scenario"].tolist()) == ["Scenario 2"]

res = test_mp.runs.tabulate(
default_only=False,
scenario={"name": "Scenario 2"},
)

assert sorted(res["model"].tolist()) == ["Model 2"]
assert sorted(res["scenario"].tolist()) == ["Scenario 2"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest to extend the test in the following way:

  • Remove all datapoints for the run Model 1, Scenario 1 related to Region 3
  • Repeat the assertion form above
             res = test_mp.runs.tabulate(
               default_only=False,
               iamc={
                   "region": {"name": "Region 3"},
               },
           )
  • This should now only return Model 2, Scenario 2

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@danielhuppmann thanks for raising this. I added a test as you proposed and only runs with existing datapoints are returned 👍

Loading