• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

iplweb / bpp / c5db2772-42ef-40cf-977b-8238df9ca907

21 Aug 2025 09:47AM UTC coverage: 46.22% (-0.06%) from 46.283%
c5db2772-42ef-40cf-977b-8238df9ca907

push

circleci

mpasternak
Merge branch 'release/v202508.1195'

3 of 3 new or added lines in 2 files covered. (100.0%)

2836 existing lines in 173 files now uncovered.

17625 of 38133 relevant lines covered (46.22%)

1.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
src/crossref_bpp/forms.py
1
import logging
3✔
2

3
from django import forms
3✔
4
from django.core.exceptions import ValidationError
3✔
5
from sentry_sdk import capture_exception
3✔
6

7
from crossref_bpp.models import CrossrefAPICache
3✔
8
from import_common.normalization import normalize_doi
3✔
9

10

11
class PobierzZCrossrefAPIForm(forms.Form):
3✔
12
    identyfikator_doi = forms.CharField(
3✔
13
        label="Identyfikator DOI",
14
        help_text="... może być również adres URL http://dx.doi.org/... lub http://doi.org/...",
15
        required=True,
16
        widget=forms.TextInput(attrs={"style": "width: 512px"}),
17
    )
18

19
    def clean_identyfikator_doi(self):
3✔
UNCOV
20
        v = self.cleaned_data["identyfikator_doi"]
1✔
UNCOV
21
        return normalize_doi(v)
1✔
22

23
    def clean(self):
3✔
UNCOV
24
        doi = self.cleaned_data.get("identyfikator_doi")
1✔
UNCOV
25
        if doi is None:
1✔
26
            raise ValidationError("Podaj identyfikator DOI")
×
UNCOV
27
        try:
1✔
UNCOV
28
            data = CrossrefAPICache.objects.get_by_doi(doi)
1✔
29
        except Exception as e:
×
30
            capture_exception(e)
×
31
            logging.exception(e)
×
32
            raise ValidationError(f"Podczas pobierania danych wystąpił błąd {e}")
×
33

UNCOV
34
        if data is None:
1✔
35
            raise ValidationError(
×
36
                f'Dla podanego DOI "{doi}" nie znaleziono nic po stronie CrossRef API'
37
            )
38

UNCOV
39
        self.cleaned_data["json_data"] = data
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc