Skip to content

Commit 3e9395b

Browse files
committed
Initial commit
1 parent 10d7b2f commit 3e9395b

22 files changed

+457
-0
lines changed

.coveragerc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[report]
2+
omit =
3+
*/site-packages/*
4+
*/python?.?/*
5+
ckan/*

.github/workflows/test.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Tests
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
container:
7+
# The CKAN version tag of the Solr and Postgres containers should match
8+
# the one of the container the tests run on.
9+
# You can switch this base image with a custom image tailored to your project
10+
image: ckan/ckan-dev:2.10
11+
services:
12+
solr:
13+
image: ckan/ckan-solr:2.10-solr9
14+
postgres:
15+
image: ckan/ckan-postgres-dev:2.10
16+
env:
17+
POSTGRES_USER: postgres
18+
POSTGRES_PASSWORD: postgres
19+
POSTGRES_DB: postgres
20+
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
21+
redis:
22+
image: redis:3
23+
24+
env:
25+
CKAN_SQLALCHEMY_URL: postgresql://ckan_default:pass@postgres/ckan_test
26+
CKAN_DATASTORE_WRITE_URL: postgresql://datastore_write:pass@postgres/datastore_test
27+
CKAN_DATASTORE_READ_URL: postgresql://datastore_read:pass@postgres/datastore_test
28+
CKAN_SOLR_URL: http://solr:8983/solr/ckan
29+
CKAN_REDIS_URL: redis://redis:6379/1
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
- name: Install requirements
34+
# Install any extra requirements your extension has here (dev requirements, other extensions etc)
35+
run: |
36+
pip install -r requirements.txt
37+
pip install -r dev-requirements.txt
38+
pip install -e .
39+
- name: Setup extension
40+
# Extra initialization steps
41+
run: |
42+
# Replace default path to CKAN core config file with the one on the container
43+
sed -i -e 's/use = config:.*/use = config:\/srv\/app\/src\/ckan\/test-core.ini/' test.ini
44+
45+
ckan -c test.ini db init
46+
- name: Run tests
47+
run: pytest --ckan-ini=test.ini --cov=ckanext.twdh_reports --disable-warnings ckanext/twdh_reports
48+

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.ropeproject
2+
node_modules
3+
bower_components
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
env/
15+
build/
16+
develop-eggs/
17+
dist/
18+
sdist/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# PyInstaller
24+
# Usually these files are written by a python script from a template
25+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
26+
*.manifest
27+
*.spec
28+
29+
# Installer logs
30+
pip-log.txt
31+
pip-delete-this-directory.txt
32+
33+
# Unit test / coverage reports
34+
htmlcov/
35+
.tox/
36+
.coverage
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
41+
# Sphinx documentation
42+
docs/_build/

MANIFEST.in

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include README.rst
2+
include LICENSE
3+
include requirements.txt
4+
recursive-include ckanext/twdh_reports *.html *.json *.js *.less *.css *.mo *.yml
5+
recursive-include ckanext/twdh_reports/migration *.ini *.py *.mako
6+
recursive-include ckanext/twdh_reports/public *.*

README.md

+122
Original file line numberDiff line numberDiff line change
@@ -1 +1,123 @@
1+
[![Tests](https://github.com/tino097/ckanext-twdh_reports/workflows/Tests/badge.svg?branch=main)](https://github.com/tino097/ckanext-twdh_reports/actions)
2+
13
# ckanext-twdh_reports
4+
5+
**TODO:** Put a description of your extension here: What does it do? What features does it have? Consider including some screenshots or embedding a video!
6+
7+
8+
## Requirements
9+
10+
**TODO:** For example, you might want to mention here which versions of CKAN this
11+
extension works with.
12+
13+
If your extension works across different versions you can add the following table:
14+
15+
Compatibility with core CKAN versions:
16+
17+
| CKAN version | Compatible? |
18+
| --------------- | ------------- |
19+
| 2.6 and earlier | not tested |
20+
| 2.7 | not tested |
21+
| 2.8 | not tested |
22+
| 2.9 | not tested |
23+
24+
Suggested values:
25+
26+
* "yes"
27+
* "not tested" - I can't think of a reason why it wouldn't work
28+
* "not yet" - there is an intention to get it working
29+
* "no"
30+
31+
32+
## Installation
33+
34+
**TODO:** Add any additional install steps to the list below.
35+
For example installing any non-Python dependencies or adding any required
36+
config settings.
37+
38+
To install ckanext-twdh_reports:
39+
40+
1. Activate your CKAN virtual environment, for example:
41+
42+
. /usr/lib/ckan/default/bin/activate
43+
44+
2. Clone the source and install it on the virtualenv
45+
46+
git clone https://github.com/tino097/ckanext-twdh_reports.git
47+
cd ckanext-twdh_reports
48+
pip install -e .
49+
pip install -r requirements.txt
50+
51+
3. Add `twdh_reports` to the `ckan.plugins` setting in your CKAN
52+
config file (by default the config file is located at
53+
`/etc/ckan/default/ckan.ini`).
54+
55+
4. Restart CKAN. For example if you've deployed CKAN with Apache on Ubuntu:
56+
57+
sudo service apache2 reload
58+
59+
60+
## Config settings
61+
62+
None at present
63+
64+
**TODO:** Document any optional config settings here. For example:
65+
66+
# The minimum number of hours to wait before re-checking a resource
67+
# (optional, default: 24).
68+
ckanext.twdh_reports.some_setting = some_default_value
69+
70+
71+
## Developer installation
72+
73+
To install ckanext-twdh_reports for development, activate your CKAN virtualenv and
74+
do:
75+
76+
git clone https://github.com/tino097/ckanext-twdh_reports.git
77+
cd ckanext-twdh_reports
78+
python setup.py develop
79+
pip install -r dev-requirements.txt
80+
81+
82+
## Tests
83+
84+
To run the tests, do:
85+
86+
pytest --ckan-ini=test.ini
87+
88+
89+
## Releasing a new version of ckanext-twdh_reports
90+
91+
If ckanext-twdh_reports should be available on PyPI you can follow these steps to publish a new version:
92+
93+
1. Update the version number in the `setup.py` file. See [PEP 440](http://legacy.python.org/dev/peps/pep-0440/#public-version-identifiers) for how to choose version numbers.
94+
95+
2. Make sure you have the latest version of necessary packages:
96+
97+
pip install --upgrade setuptools wheel twine
98+
99+
3. Create a source and binary distributions of the new version:
100+
101+
python setup.py sdist bdist_wheel && twine check dist/*
102+
103+
Fix any errors you get.
104+
105+
4. Upload the source distribution to PyPI:
106+
107+
twine upload dist/*
108+
109+
5. Commit any outstanding changes:
110+
111+
git commit -a
112+
git push
113+
114+
6. Tag the new release of the project on GitHub with the version number from
115+
the `setup.py` file. For example if the version number in `setup.py` is
116+
0.0.1 then do:
117+
118+
git tag 0.0.1
119+
git push --tags
120+
121+
## License
122+
123+
[AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html)

ckanext/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# encoding: utf-8
2+
3+
# this is a namespace package
4+
try:
5+
import pkg_resources
6+
pkg_resources.declare_namespace(__name__)
7+
except ImportError:
8+
import pkgutil
9+
__path__ = pkgutil.extend_path(__path__, __name__)

ckanext/twdh_reports/__init__.py

Whitespace-only changes.

ckanext/twdh_reports/assets/.gitignore

Whitespace-only changes.

ckanext/twdh_reports/assets/script.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ckan.module("twdh_reports-module", function ($, _) {
2+
"use strict";
3+
return {
4+
options: {
5+
debug: false,
6+
},
7+
8+
initialize: function () {},
9+
};
10+
});

ckanext/twdh_reports/assets/style.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
body {
3+
border-radius: 0;
4+
}
5+
*/
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# twdh_reports-js:
2+
# filter: rjsmin
3+
# output: ckanext-twdh_reports/%(version)s-twdh_reports.js
4+
# contents:
5+
# - js/twdh_reports.js
6+
# extra:
7+
# preload:
8+
# - base/main
9+
10+
# twdh_reports-css:
11+
# filter: cssrewrite
12+
# output: ckanext-twdh_reports/%(version)s-twdh_reports.css
13+
# contents:
14+
# - css/twdh_reports.css

ckanext/twdh_reports/i18n/.gitignore

Whitespace-only changes.

ckanext/twdh_reports/plugin.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import ckan.plugins as plugins
2+
import ckan.plugins.toolkit as toolkit
3+
4+
5+
class TwdhReportsPlugin(plugins.SingletonPlugin):
6+
plugins.implements(plugins.IConfigurer)
7+
8+
9+
# IConfigurer
10+
11+
def update_config(self, config_):
12+
toolkit.add_template_directory(config_, "templates")
13+
toolkit.add_public_directory(config_, "public")
14+
toolkit.add_resource("assets", "twdh_reports")
15+
16+

ckanext/twdh_reports/public/.gitignore

Whitespace-only changes.

ckanext/twdh_reports/templates/.gitignore

Whitespace-only changes.

ckanext/twdh_reports/tests/__init__.py

Whitespace-only changes.
+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
"""
2+
Tests for plugin.py.
3+
4+
Tests are written using the pytest library (https://docs.pytest.org), and you
5+
should read the testing guidelines in the CKAN docs:
6+
https://docs.ckan.org/en/2.9/contributing/testing.html
7+
8+
To write tests for your extension you should install the pytest-ckan package:
9+
10+
pip install pytest-ckan
11+
12+
This will allow you to use CKAN specific fixtures on your tests.
13+
14+
For instance, if your test involves database access you can use `clean_db` to
15+
reset the database:
16+
17+
import pytest
18+
19+
from ckan.tests import factories
20+
21+
@pytest.mark.usefixtures("clean_db")
22+
def test_some_action():
23+
24+
dataset = factories.Dataset()
25+
26+
# ...
27+
28+
For functional tests that involve requests to the application, you can use the
29+
`app` fixture:
30+
31+
from ckan.plugins import toolkit
32+
33+
def test_some_endpoint(app):
34+
35+
url = toolkit.url_for('myblueprint.some_endpoint')
36+
37+
response = app.get(url)
38+
39+
assert response.status_code == 200
40+
41+
42+
To temporary patch the CKAN configuration for the duration of a test you can use:
43+
44+
import pytest
45+
46+
@pytest.mark.ckan_config("ckanext.myext.some_key", "some_value")
47+
def test_some_action():
48+
pass
49+
"""
50+
import ckanext.twdh_reports.plugin as plugin
51+
52+
53+
@pytest.mark.ckan_config("ckan.plugins", "twdh_reports")
54+
@pytest.mark.usefixtures("with_plugins")
55+
def test_plugin():
56+
assert plugin_loaded("twdh_reports")

dev-requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytest-ckan

requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)