-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c36276
commit 90802a8
Showing
1 changed file
with
145 additions
and
0 deletions.
There are no files selected for viewing
145 changes: 145 additions & 0 deletions
145
server/analytics/content_publishing_report/content_publishing_report_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
# -*- coding: utf-8; -*- | ||
# | ||
# This file is part of Superdesk. | ||
# | ||
# Copyright 2024 Sourcefabric z.u. and contributors. | ||
# | ||
# For the full copyright and license information, please see the | ||
# AUTHORS and LICENSE files distributed with this source code, or | ||
# at https://www.sourcefabric.org/superdesk/license | ||
|
||
from superdesk import get_resource_service | ||
from superdesk.metadata.item import ITEM_STATE, CONTENT_STATE | ||
from superdesk.tests import TestCase | ||
|
||
from analytics import init_app | ||
|
||
|
||
class ContentPublishingReportTestCase(TestCase): | ||
def setUp(self): | ||
self.maxDiff = None | ||
|
||
with self.app.app_context(): | ||
init_app(self.app) | ||
self.service = get_resource_service("content_publishing_report") | ||
self.app.data.insert( | ||
"published", | ||
[ | ||
{ | ||
"_id": "item1", | ||
"task": {"desk": "de1", "stage": "st1"}, | ||
ITEM_STATE: CONTENT_STATE.PUBLISHED, | ||
"anpa_category": [{"qcode": "advisory", "name": "Advisories"}], | ||
"source": "AAP", | ||
}, | ||
{ | ||
"_id": "item2", | ||
"task": {"desk": "de1", "stage": "st1"}, | ||
ITEM_STATE: CONTENT_STATE.PUBLISHED, | ||
"anpa_category": [{"qcode": "domestic_sport", "name": "Domestic Sport"}], | ||
"subject": [ | ||
{"name": "BTL/ECO", "qcode": "btl", "scheme": "packages"}, | ||
{"name": "Canadian", "qcode": "candian", "scheme": "keywords"}, | ||
], | ||
"source": "AAP", | ||
}, | ||
{ | ||
"_id": "item3", | ||
"task": {"desk": "de1", "stage": "st1"}, | ||
ITEM_STATE: CONTENT_STATE.PUBLISHED, | ||
"anpa_category": [{"qcode": "finance", "name": "Finance"}], | ||
"subject": [{"name": "Aap", "qcode": "aap", "scheme": "keywords"}], | ||
"source": "AAP", | ||
}, | ||
{ | ||
"_id": "item4", | ||
"task": {"desk": "de1", "stage": "st1"}, | ||
ITEM_STATE: CONTENT_STATE.PUBLISHED, | ||
"subject": [ | ||
{"name": "Aap", "qcode": "aap", "scheme": "keywords"}, | ||
{"name": "BIN/ALG", "qcode": "bin", "scheme": "packages"}, | ||
], | ||
"source": "AAP", | ||
}, | ||
], | ||
) | ||
|
||
def test_get_aggregation_buckets(self): | ||
with self.app.app_context(): | ||
|
||
params = { | ||
"source": { | ||
"query": { | ||
"filtered": { | ||
"filter": { | ||
"bool": { | ||
"must": [], | ||
"must_not": [], | ||
} | ||
} | ||
} | ||
}, | ||
"size": 0, | ||
"from": 0, | ||
"sort": [{"versioncreated": "desc"}], | ||
}, | ||
"page": 1, | ||
"max_results": 0, | ||
"aggs": { | ||
"group": {"field": "anpa_category.qcode", "size": 0}, | ||
"subgroup": {"field": '{"scheme":"keywords"}', "size": 0}, | ||
}, | ||
} | ||
args = { | ||
"aggs": { | ||
"group": {"field": "anpa_category.qcode", "size": 0}, | ||
"subgroup": {"field": '{"scheme":"keywords"}', "size": 0}, | ||
}, | ||
"params": { | ||
"dates": {}, | ||
"must": {}, | ||
"must_not": {}, | ||
"min": 1, | ||
"chart": {"type": "column", "sort_order": "desc"}, | ||
}, | ||
"return_type": "aggregations", | ||
} | ||
|
||
docs = self.service.run_query(params, args) | ||
report = self.service.generate_report(docs, args) | ||
assert { | ||
"groups": {"advisory": {}, "domestic_sport": {"candian": 1}, "finance": {"aap": 1}}, | ||
"subgroups": {"candian": 1, "aap": 1}, | ||
} == report | ||
|
||
params["aggs"] = { | ||
"group": {"field": '{"scheme":"packages"}', "size": 0}, | ||
"subgroup": {"field": '{"scheme":"keywords"}', "size": 0}, | ||
} | ||
args["aggs"] = { | ||
"group": {"field": '{"scheme":"packages"}', "size": 0}, | ||
"subgroup": {"field": '{"scheme":"keywords"}', "size": 0}, | ||
} | ||
|
||
docs = self.service.run_query(params, args) | ||
report = self.service.generate_report(docs, args) | ||
assert { | ||
"groups": {"bin": {"aap": 1}, "btl": {"candian": 1}}, | ||
"subgroups": {"aap": 1, "candian": 1}, | ||
} == report | ||
|
||
params["aggs"] = { | ||
"group": {"field": '{"scheme":"keywords"}', "size": 0}, | ||
"subgroup": {"field": "anpa_category.qcode", "size": 0}, | ||
} | ||
args["aggs"] = { | ||
"group": {"field": '{"scheme":"packages"}', "size": 0}, | ||
"subgroup": {"field": "anpa_category.qcode", "size": 0}, | ||
} | ||
|
||
docs = self.service.run_query(params, args) | ||
report = self.service.generate_report(docs, args) | ||
assert { | ||
"groups": {"aap": {"finance": 1}, "candian": {"domestic_sport": 1}}, | ||
"subgroups": {"finance": 1, "domestic_sport": 1}, | ||
} == report |