aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.WixCop/WixCopRunner.cs
blob: d2a0abbe837cd3247d489e6eee94f0eb7f2575d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixToolsetTest.WixCop
{
    using System;
    using System.Collections.Generic;
    using WixToolset.Core;
    using WixToolset.Core.TestPackage;
    using WixToolset.Extensibility;
    using WixToolset.Extensibility.Services;
    using WixToolset.Tools.WixCop;
    using WixToolset.Tools.WixCop.CommandLine;
    using WixToolset.Tools.WixCop.Interfaces;

    public class WixCopRunner
    {
        public bool FixErrors { get; set; }

        public List<string> SearchPatterns { get; } = new List<string>();

        public string SettingFile1 { get; set; }

        public WixCopRunnerResult Execute()
        {
            var argList = new List<string>();

            if (this.FixErrors)
            {
                argList.Add("-f");
            }

            if (!String.IsNullOrEmpty(this.SettingFile1))
            {
                argList.Add($"-set1{this.SettingFile1}");
            }

            foreach (var searchPattern in this.SearchPatterns)
            {
                argList.Add(searchPattern);
            }

            return WixCopRunner.Execute(argList.ToArray());
        }

        public static WixCopRunnerResult Execute(string[] args)
        {
            var listener = new TestMessageListener();

            var serviceProvider = WixToolsetServiceProviderFactory.CreateServiceProvider();
            serviceProvider.AddService<IMessageListener>((x, y) => listener);
            serviceProvider.AddService<IWixCopCommandLineParser>((x, y) => new WixCopCommandLineParser(x));

            var exitCode = Execute(serviceProvider, args);

            return new WixCopRunnerResult
            {
                ExitCode = exitCode,
                Messages = listener.Messages.ToArray()
            };
        }

        public static int Execute(IWixToolsetServiceProvider serviceProvider, string[] args)
        {
            var wixcop = new Program();
            return wixcop.Run(serviceProvider, args);
        }
    }
}