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

iplweb / bpp / d4210075-7da0-4e37-8ada-0d8d6fdd6622

02 Mar 2025 10:47PM UTC coverage: 47.416% (+3.0%) from 44.439%
d4210075-7da0-4e37-8ada-0d8d6fdd6622

push

circleci

mpasternak
Merge tag 'v202503.1160' into dev

Nowa wersja: v202503.1160 v202503.1160

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

1857 existing lines in 122 files now uncovered.

17040 of 35937 relevant lines covered (47.42%)

1.21 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