File: ExtractMethod\MiscTests.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.
 
#nullable disable
 
using System.Linq;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.ExtractMethod;
using Microsoft.CodeAnalysis.Editor.UnitTests;
using Microsoft.CodeAnalysis.Editor.UnitTests.Extensions;
using Microsoft.CodeAnalysis.Editor.UnitTests.Utilities;
using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces;
using Microsoft.CodeAnalysis.ExtractMethod;
using Microsoft.CodeAnalysis.Notification;
using Microsoft.CodeAnalysis.Test.Utilities;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor.Commanding.Commands;
using Roslyn.Test.Utilities;
using Xunit;
 
namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.ExtractMethod
{
    [UseExportProvider]
    [Trait(Traits.Feature, Traits.Features.ExtractMethod)]
    public class MiscTests
    {
        [Fact]
        public void ServiceTest1()
        {
            var markupCode = """
                class A
                {
                    /* test */ [|public|] void Test(int i, int b, int c)
                    {
 
                    }
                }
                """;
            MarkupTestFile.GetSpan(markupCode, out var code, out var span);
 
            var root = SyntaxFactory.ParseCompilationUnit(code);
            var result = CSharpSyntaxTriviaService.Instance.SaveTriviaAroundSelection(root, span);
 
            var rootWithAnnotation = result.Root;
 
            // find token to replace
            var publicToken = rootWithAnnotation.DescendantTokens().First(t => t.Kind() == SyntaxKind.PublicKeyword);
 
            // replace the token with new one
            var newRoot = rootWithAnnotation.ReplaceToken(publicToken, SyntaxFactory.Token(SyntaxKind.PrivateKeyword));
 
            // restore trivia around it
            var rootWithTriviaRestored = result.RestoreTrivia(newRoot);
 
            var expected = """
                class A
                {
                    /* test */ private void Test(int i, int b, int c)
                    {
 
                    }
                }
                """;
 
            Assert.Equal(expected, rootWithTriviaRestored.ToFullString());
        }
 
        [Fact]
        public void ServiceTest2()
        {
            var markupCode = """
                class A
                {
 
                #if true
                    [|/* test */ public|] void Test(int i, int b, int c)
                    {
 
                    }
                #endif
 
                }
                """;
            MarkupTestFile.GetSpan(markupCode, out var code, out var span);
 
            var root = SyntaxFactory.ParseCompilationUnit(code);
            var result = CSharpSyntaxTriviaService.Instance.SaveTriviaAroundSelection(root, span);
 
            var rootWithAnnotation = result.Root;
 
            // find token to replace
            var publicToken = rootWithAnnotation.DescendantTokens().First(t => t.Kind() == SyntaxKind.PublicKeyword);
 
            // replace the token with new one
            var newRoot = rootWithAnnotation.ReplaceToken(publicToken, SyntaxFactory.Token(SyntaxKind.PrivateKeyword));
 
            // restore trivia around it
            var rootWithTriviaRestored = result.RestoreTrivia(newRoot);
 
            var expected = """
                class A
                {
 
                #if true
                    private void Test(int i, int b, int c)
                    {
 
                    }
                #endif
 
                }
                """;
 
            Assert.Equal(expected, rootWithTriviaRestored.ToFullString());
        }
 
        [WpfFact]
        public void TestExtractMethodCommandHandlerErrorMessage()
        {
            var markupCode = """
                class A
                {
                    [|void Method() {}|]
                }
                """;
 
            using var workspace = TestWorkspace.CreateCSharp(markupCode, composition: EditorTestCompositions.EditorFeaturesWpf);
            var testDocument = workspace.Documents.Single();
 
            var view = testDocument.GetTextView();
            view.Selection.Select(new SnapshotSpan(
                view.TextBuffer.CurrentSnapshot, testDocument.SelectedSpans[0].Start, testDocument.SelectedSpans[0].Length), isReversed: false);
 
            var callBackService = workspace.Services.GetService<INotificationService>() as INotificationServiceCallback;
            var called = false;
            callBackService.NotificationCallback = (t, m, s) => called = true;
 
            var handler = workspace.ExportProvider.GetCommandHandler<ExtractMethodCommandHandler>(PredefinedCommandHandlerNames.ExtractMethod, ContentTypeNames.CSharpContentType);
 
            handler.ExecuteCommand(new ExtractMethodCommandArgs(view, view.TextBuffer), TestCommandExecutionContext.Create());
 
            Assert.True(called);
        }
    }
}