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

iplweb / bpp / 0cececd7-a2e7-4a75-a26c-21df764ad54e

24 Aug 2025 10:29PM UTC coverage: 41.169% (-2.5%) from 43.704%
0cececd7-a2e7-4a75-a26c-21df764ad54e

push

circleci

mpasternak
Merge branch 'release/v202508.1206'

1 of 1 new or added line in 1 file covered. (100.0%)

2674 existing lines in 124 files now uncovered.

16057 of 39003 relevant lines covered (41.17%)

0.76 hits per line

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

41.67
src/crossref_bpp/forms.py
1
import logging
2✔
2

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

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

10

11
class PobierzZCrossrefAPIForm(forms.Form):
2✔
12
    identyfikator_doi = forms.CharField(
2✔
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):
2✔
UNCOV
20
        v = self.cleaned_data["identyfikator_doi"]
×
UNCOV
21
        return normalize_doi(v)
×
22

23
    def clean(self):
2✔
UNCOV
24
        doi = self.cleaned_data.get("identyfikator_doi")
×
UNCOV
25
        if doi is None:
×
26
            raise ValidationError("Podaj identyfikator DOI")
×
UNCOV
27
        try:
×
UNCOV
28
            data = CrossrefAPICache.objects.get_by_doi(doi)
×
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:
×
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
×
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