package TestFor::Code::TidyAll::Plugin::PHPCodeSniffer;

use Path::Tiny qw( cwd );
use Test::Class::Most parent => 'TestFor::Code::TidyAll::Plugin';

sub test_filename {'foo.php'}

sub _extra_path {
    cwd()->child(qw( php PHP_CodeSniffer bin ));
}

sub test_main : Tests {
    my $self = shift;

    # This fails in Azure Pipelines under Windows for some reason that I
    # cannot figure out.
    if ( $^O eq 'MSWin32' && $ENV{BUILD_BUILDID} ) {
        $self->builder->skip('These tests fail on Windows in CI');
        return;
    }
    return unless $self->require_executable('php');
    return unless $self->require_executable('phpcs');

    my $source = '<?php function foo() { $bar = 5 } ?>';

    $self->tidyall(
        source    => $source,
        conf      => { argv => '--severity=6' },
        expect_ok => 1,
    );
    $self->tidyall(
        source       => $source,
        conf         => { argv => '--severity=3' },
        expect_error => qr/Missing .* doc/,
    );
    $self->tidyall(
        source       => $source,
        conf         => { argv => '--blahblah' },
        expect_error => qr/not known/,
    );
}

1;
