"""
Test suite for pyacl
Copyright 2024, Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>

Licensed under the EUPL, Version 1.2 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence").
You may not use this work except in compliance with the Licence.
An English copy of the Licence is shipped in a file called LICENSE along with this applications source code.
You may obtain copies of the Licence in any of the official languages at https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.
"""

from os.path import dirname, join

from pytest import mark
from yaml import safe_load

from pyacl import acl


def load_yaml(file):
  with open(join(dirname(__file__), file)) as fh:
    data = safe_load(fh)

  return list(data.items())


@mark.parametrize('aclin, aclout', load_yaml('matrix.yaml'))
def test_parse_acl_through_string(sample_file_with_acl, aclin, aclout):
  have = acl.parse_acl_from_path_via_string(sample_file_with_acl)
  assert aclout == have


@mark.parametrize('aclin, aclout', load_yaml('matrix.yaml'))
def test_parse_acl_native(sample_file_with_acl, aclin, aclout):
  have = acl.parse_acl_from_path(sample_file_with_acl)
  assert aclout == have


@mark.parametrize('scenario, data', load_yaml('matrix-apply.yaml'))
def test_build_and_apply_acl(sample_file, scenario, data):
  built_acl = acl.build_acl(**data['args'])
  assert len(list(built_acl)) == 5  # noqa PLR2004, this is the expected size of the built ACL
  assert acl.apply_acl_to_path(built_acl, sample_file) is None
  read_acl = acl.parse_acl_from_path(sample_file)
  assert read_acl == data['expect']