File: EmbeddedLanguages\ValidateJsonStringTests.cs
Web Access
Project: ..\..\..\src\EditorFeatures\CSharpTest\Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests.csproj (Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp.EmbeddedLanguages;
using Microsoft.CodeAnalysis.Diagnostics;
using Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics;
using Microsoft.CodeAnalysis.Editor.UnitTests.CodeActions;
using Microsoft.CodeAnalysis.Features.EmbeddedLanguages.Json.LanguageServices;
using Microsoft.CodeAnalysis.Test.Utilities;
using Microsoft.CodeAnalysis.Test.Utilities.EmbeddedLanguages;
using Xunit;
using Xunit.Abstractions;
 
namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.EmbeddedLanguages
{
    [Trait(Traits.Feature, Traits.Features.ValidateJsonString)]
    public class ValidateJsonStringTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest
    {
        public ValidateJsonStringTests(ITestOutputHelper logger) : base(logger)
        {
        }
 
        internal override (DiagnosticAnalyzer, CodeFixProvider?) CreateDiagnosticProviderAndFixer(Workspace workspace)
            => (new CSharpJsonDiagnosticAnalyzer(), null);
 
        private OptionsCollection OptionOn()
            => Option(IdeAnalyzerOptionsStorage.ReportInvalidJsonPatterns, true);
 
        [Fact]
        public async Task TestWarning1()
        {
            await TestDiagnosticInfoAsync("""
                class Program
                {
                    void Main()
                    {
                        var r = /*lang=json,strict*/ "[|new|] Json()";
                    }     
                }
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0, FeaturesResources.Constructors_not_allowed));
        }
 
        [Fact]
        public async Task TestWarningInRawString1()
        {
            await TestDiagnosticInfoAsync(""""
                class Program
                {
                    void Main()
                    {
                        var r = /*lang=json,strict*/ """[|new|] Json()""";
                    }     
                }
                """",
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0, FeaturesResources.Constructors_not_allowed));
        }
 
        [Fact]
        public async Task TestWarning2()
        {
            await TestDiagnosticInfoAsync("""
                class Program
                {
                    void Main()
                    {
                        var r = /*lang=json*/ "[|}|]";
                    }     
                }
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    string.Format(FeaturesResources._0_unexpected, '}')));
        }
 
        [Fact]
        public async Task TestJsonDocumentWithTrailingComma()
        {
            await TestDiagnosticInfoAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1[|,|]]");
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Trailing_comma_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentTrailingCommaDisallowed()
        {
            await TestDiagnosticInfoAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1[|,|]]", new JsonDocumentOptions { AllowTrailingCommas = false });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Trailing_comma_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentTrailingCommaAllowed()
        {
            await TestDiagnosticMissingAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1[|,|]]", new JsonDocumentOptions { AllowTrailingCommas = true });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """);
        }
 
        [Fact]
        public async Task TestJsonDocumentTrailingCommaAllowedImplicitObject()
        {
            await TestDiagnosticMissingAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1[|,|]]", new() { AllowTrailingCommas = true });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """);
        }
 
        [Fact]
        public async Task TestJsonDocumentWithComments()
        {
            await TestDiagnosticInfoAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1][|/*comment*/|]");
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Comments_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsDisallowed()
        {
            await TestDiagnosticInfoAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1][|/*comment*/|]", new JsonDocumentOptions { CommentHandling = JsonCommentHandling.Disallow });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """,
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Comments_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsAllowed()
        {
            await TestDiagnosticMissingAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1][|/*comment*/|]", new JsonDocumentOptions { CommentHandling = JsonCommentHandling.Allow });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """);
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsAllowedImplicitObject()
        {
            await TestDiagnosticMissingAsync("""
                <Workspace>
                    <Project Language="C#" CommonReferencesNet6="true">
                        <Document>
                using System.Text.Json;
 
                class Program
                {
                    void Main()
                    {
                        var r = JsonDocument.Parse(@"[1][|/*comment*/|]", new() { CommentHandling = JsonCommentHandling.Allow });
                    }     
                }
                        </Document>
                    </Project>
                </Workspace>
                """);
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsDisallowed_StringSyntaxAttribute_NoOptionsProvided()
        {
            await TestDiagnosticInfoAsync($@"<Workspace>
    <Project Language=""C#"" CommonReferencesNet6=""true"">
        <Document>
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
 
class Program
{{
    void Main()
    {{
        M(@""[1][|/*comment*/|]"");
    }}
 
    void M([StringSyntax(StringSyntaxAttribute.Json)] string p)
    {{
    }}
}}
{EmbeddedLanguagesTestConstants.StringSyntaxAttributeCodeCSharpXml}
        </Document>
    </Project>
</Workspace>",
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Comments_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsDisallowed_StringSyntaxAttribute_OptionsProvided()
        {
            await TestDiagnosticInfoAsync($@"<Workspace>
    <Project Language=""C#"" CommonReferencesNet6=""true"">
        <Document>
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
 
class Program
{{
    void Main()
    {{
        M(@""[1][|/*comment*/|]"", new JsonDocumentOptions {{ CommentHandling = JsonCommentHandling.Disallow }});
    }}
 
    void M([StringSyntax(StringSyntaxAttribute.Json)] string p, JsonDocumentOptions options)
    {{
    }}
}}
{EmbeddedLanguagesTestConstants.StringSyntaxAttributeCodeCSharpXml}
        </Document>
    </Project>
</Workspace>",
                globalOptions: OptionOn(),
                diagnosticId: AbstractJsonDiagnosticAnalyzer.DiagnosticId,
                diagnosticSeverity: DiagnosticSeverity.Warning,
                diagnosticMessage: string.Format(FeaturesResources.JSON_issue_0,
                    FeaturesResources.Comments_not_allowed));
        }
 
        [Fact]
        public async Task TestJsonDocumentCommentsAllowed_StringSyntaxAttribute_OptionsProvided()
        {
            await TestDiagnosticMissingAsync($@"<Workspace>
    <Project Language=""C#"" CommonReferencesNet6=""true"">
        <Document>
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
 
class Program
{{
    void Main()
    {{
        M(@""[1][|/*comment*/|]"", new JsonDocumentOptions {{ CommentHandling = JsonCommentHandling.Allow }});
    }}
 
    void M([StringSyntax(StringSyntaxAttribute.Json)] string p, JsonDocumentOptions options)
    {{
    }}
}}
{EmbeddedLanguagesTestConstants.StringSyntaxAttributeCodeCSharpXml}
        </Document>
    </Project>
</Workspace>");
        }
 
        [Fact]
        public async Task TestNotOnUnlikelyJson()
        {
            await TestDiagnosticMissingAsync($@"
<Workspace>
    <Project Language=""C#"" CommonReferencesNet6=""true"">
        <Document>
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
 
class Program
{{
    void Main()
    {{
        var v = [|""[1, 2, 3]""|];
    }}
}}
        </Document>
    </Project>
</Workspace>");
        }
 
        [Fact]
        public async Task TestNotOnLikelyJson()
        {
            await TestDiagnosticMissingAsync($@"
<Workspace>
    <Project Language=""C#"" CommonReferencesNet6=""true"">
        <Document>
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
 
class Program
{{
    void Main()
    {{
        var v = [|""{{ prop: 0 }}""|];
    }}
}}
        </Document>
    </Project>
</Workspace>");
        }
    }
}