-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to CKAN 2.10
- Loading branch information
Showing
13 changed files
with
154 additions
and
40 deletions.
There are no files selected for viewing
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,64 @@ | ||
name: Tests CKAN 2.10 Python 3.10 | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
container: | ||
# The CKAN version tag of the Solr and Postgres containers should match | ||
# the one of the container the tests run on. | ||
# You can switch this base image with a custom image tailored to your project | ||
image: openknowledge/ckan-dev:2.10.1 | ||
services: | ||
solr: | ||
image: ckan/ckan-solr:2.10-solr8 | ||
postgres: | ||
image: ckan/ckan-postgres-dev:2.9 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | ||
redis: | ||
image: redis:3 | ||
|
||
env: | ||
CKAN_SQLALCHEMY_URL: postgresql://ckan_default:pass@postgres/ckan_test | ||
CKAN_DATASTORE_WRITE_URL: postgresql://datastore_write:pass@postgres/datastore_test | ||
CKAN_DATASTORE_READ_URL: postgresql://datastore_read:pass@postgres/datastore_test | ||
CKAN_SOLR_URL: http://solr:8983/solr/ckan | ||
CKAN_REDIS_URL: redis://redis:6379/1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Flake8 | ||
run: | | ||
pip install flake8 | ||
flake8 . --count --statistics | ||
- name: Black | ||
run: | | ||
pip install --ignore-installed black | ||
black . --check --diff | ||
- name: Install requirements | ||
# Install any extra requirements your extension has here (dev requirements, other extensions etc) | ||
run: | | ||
# remove when errors with "packaging" package is fixed | ||
pip install setuptools==65.3.0 | ||
pip install -r requirements.txt | ||
pip install -r dev-requirements.txt | ||
python3 setup.py develop | ||
- name: Setup extension | ||
# Extra initialization steps | ||
run: | | ||
# Replace default path to CKAN core config file with the one on the container | ||
sed -i -e 's/use = config:.*/use = config:\/srv\/app\/src\/ckan\/test-core.ini/' test.ini | ||
ckan -c test.ini db init | ||
ckan -c test.ini db upgrade -p announcements | ||
- name: Run tests | ||
run: pytest --ckan-ini=test.ini --cov=ckanext.announcements --disable-warnings ckanext/announcements | ||
|
2 changes: 1 addition & 1 deletion
2
.github/workflows/test.yml → .github/workflows/test-ckan-2.9.yml
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Tests | ||
name: Tests CKAN 2.9 Python 3.8 | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
|
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
__VERSION__ = "0.0.4" | ||
__VERSION__ = "0.1.0" |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ Public | |
} | ||
|
||
.announcement { | ||
padding-bottom: 10px; | ||
padding-bottom: 20px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
|
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
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
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
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
2 changes: 1 addition & 1 deletion
2
ckanext/announcements/templates/announcements/announcement.html
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
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
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
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 |
---|---|---|
@@ -1,21 +1,29 @@ | ||
from types import SimpleNamespace | ||
import pytest | ||
from ckantoolkit.tests import factories as core_factories | ||
from ckanext.announcements.tests import factories | ||
|
||
|
||
@pytest.fixture | ||
def an_data(): | ||
"""test setup data""" | ||
obj = SimpleNamespace() | ||
# Create CKAN 2.9/2.10 users | ||
obj.regular_user = factories.UserMulti() | ||
obj.sysadmin = factories.SysadminUserMulti() | ||
|
||
return obj | ||
|
||
|
||
@pytest.mark.usefixtures("clean_db", "announcement_migrate", "with_request_context") | ||
class TestAnnouncementsUI: | ||
def setup(self): | ||
self.regular_user = core_factories.User(name="regular") | ||
self.sysadmin = core_factories.Sysadmin(name="sysadmin") | ||
|
||
def test_regular_user(self, app): | ||
environ = {"REMOTE_USER": self.regular_user["name"]} | ||
def test_regular_user(self, app, an_data): | ||
environ = {"Authorization": an_data.regular_user["token"]} | ||
|
||
resp = app.get("/ckan-admin/announcements", extra_environ=environ) | ||
resp = app.get("/ckan-admin/announcements", headers=environ) | ||
assert resp.status_code == 403 | ||
|
||
def test_sysadmin_user(self, app): | ||
environ = {"REMOTE_USER": self.sysadmin["name"]} | ||
def test_sysadmin_user(self, app, an_data): | ||
environ = {"Authorization": an_data.sysadmin["token"]} | ||
|
||
resp = app.get("/ckan-admin/announcements", extra_environ=environ) | ||
resp = app.get("/ckan-admin/announcements", headers=environ) | ||
assert resp.status_code == 200 |