kanidm/pykanidm/tests/test_oauth2_checks.py
James Hodgkinson c8bd1739f9
PyKanidm updates and testing (#2301)
* otel can eprintln kthx

* started python integration tests, features

* more tests more things

* adding heaps more things

* updating docs

* fixing python test

* fixing errors, updating integration test

* Add models for OAuth2, Person, ServiceAccount and add missing endpoints

* Alias Group to GroupInfo to keep it retrocompatible

* Fixed issues from review

* adding oauth2rs_get_basic_secret

* adding oauth2rs_get_basic_secret

* Fixed mypy issues

* adding more error logs

* updating test scripts and configs

* fixing tests and validating things

* more errors

---------

Co-authored-by: Dogeek <simon.bordeyne@gmail.com>
2024-01-31 03:27:43 +00:00

15 lines
308 B
Python

""" test validation of urls """
import pytest
from kanidm import KanidmClient
def test_bad_origin() -> None:
"""testing with a bad origin"""
client = KanidmClient(uri="http://localhost:8000")
with pytest.raises(ValueError):
client._validate_is_valid_origin_url("ftp://example.com")