Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

(시리즈 글이 6개 있습니다.)
오류 유형: 534. mstest.exe 실행 시 "Visual Studio Enterprise is required to execute the test." 오류
; https://www.sysnet.pe.kr/2/0/11886

개발 환경 구성: 438. mstest, QTAgent의 로그 파일 설정 방법
; https://www.sysnet.pe.kr/2/0/11889

개발 환경 구성: 439. "Visual Studio Enterprise is required to execute the test." 메시지와 관련된 코드 기록
; https://www.sysnet.pe.kr/2/0/11890

오류 유형: 539. mstest 실행 시 "The directory name is invalid." 오류 발생
; https://www.sysnet.pe.kr/2/0/11902

오류 유형: 575. mstest.exe - System.Resources.MissingSatelliteAssemblyException: The satellite assembly named "Microsoft.VisualStudio.ProductKeyDialog.resources.dll, ..."
; https://www.sysnet.pe.kr/2/0/12044

오류 유형: 576. mstest.exe 실행 시 "Visual Studio Enterprise is required to execute the test." 오류 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/12045




"Visual Studio Enterprise is required to execute the test." 메시지와 관련된 코드 기록

지난 글에서,

mstest.exe 실행 시 "Visual Studio Enterprise is required to execute the test." 오류
; https://www.sysnet.pe.kr/2/0/11886

"Visual Studio Enterprise"가 설치되어 있는데도 "Visual Studio Enterprise is required to execute the test." 오류 메시지가 발생하는 상황을 설명했는데요, 그때의 스택 트레이스를 보면 다음과 같습니다.

(mstest.exe, PID 24268, Thread 21) ControllerExecution: Received exception calling InitializePlugin for test e77946db-2d9f-4453-b207-e1e3f83f7784: Microsoft.VisualStudio.TestTools.WebStress.LoadTestLicenseViolationException: Visual Studio Enterprise is required to execute the test.
   at Microsoft.VisualStudio.TestTools.WebStress.LoadTestUserLicenseManager.CheckForLoadTestExecution()
   at Microsoft.VisualStudio.TestTools.WebStress.LoadTestResultsCollector.Initialize(TestRun testRun, String[] agentNames)
   at Microsoft.VisualStudio.TestTools.WebStress.LoadTestControllerPlugin.Initialize(IControllerContext testContext)
   at Microsoft.VisualStudio.TestTools.Controller.ControllerPluginManager.InitializePlugin(Guid executionId)
   at Microsoft.VisualStudio.TestTools.Controller.ControllerExecution.SignalSyncStart(Object state)

이와 관련된 소스 코드들의 추적을 기록 차원에서 남깁니다.




// C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.QualityTools.ControllerObject.dll
// Microsoft.VisualStudio.QualityTools.ControllerObject, Version=16.0.0.0

internal class ControllerPluginManager
{
    // Fields
    private Dictionary<Guid, ControllerPlugin> m_plugins;

    // Methods
    public ControllerPluginManager();
    public void CleanupPlugins();
    public void CleanupTest(Guid execId);
    public static IControllerPlugin CreateControllerPlugin(ITestElement testElement);
    public static void DeleteTestRun(Guid guidTestRunId, IExecutionRunConfiguration runConfig, ControllerInformation controllerInformation);
    public IControllerPlugin FindPlugin(Guid executionId);
    public void InitializePlugin(Guid executionId)
    {
        ControllerPlugin plugin;
        if (this.m_plugins.TryGetValue(executionId, out plugin) && (plugin != null))
        {
            ControllerPlugin plugin2 = plugin;
            lock (plugin2)
            {
                if (plugin.Initialized)
                {
                    return;
                }
                plugin.Initialized = true;
            }
            EqtTrace.Info("ControllerPluginManager: Calling Initialize on ControllerPlugin for test " + executionId.ToString());
            plugin.Plugin.Initialize(plugin.Context);
            EqtTrace.Info("ControllerPluginManager: Calling TestAgentsReady on ControllerPlugin for test " + executionId.ToString());
            plugin.Plugin.TestAgentsReady(plugin.Context.AgentNames);
        }
    }

    public IControllerPlugin LoadPlugin(ControllerExecution execution, ITestElement testElement);
    public void SetMessageSinkBad(Guid executionId);
}

// Microsoft.VisualStudio.QualityTools.LoadTest, Version=16.0.0.0 
// C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\PrivateAssemblies

internal class LoadTestResultsCollector : ICounterProvider
{
    // ...[생략]...

    public LoadTestResultsCollector(WebTestSuite suite, LoadTestIntervalCallback intervalDataCallback, LoadTestResultsCollectorStatusCallback statusCallback, IControllerContext controllerContext)
    {
        // ...[생략]...
        this.m_suite = suite;
        // ...[생략]...
    }
    
    public void Initialize(TestRun testRun, string[] agentNames)
    {
        // ...[생략]...
        this.m_licenseManager = new LoadTestUserLicenseManager(this.m_suite.AvailableFeatures, isRemote);
        try
        {
            this.m_licenseManager.CheckForLoadTestExecution();
            this.m_licenseManager.CheckForRemoteExecution();
            this.m_licenseManager.CheckUserCountForLoadTest((long) this.m_suite.GetMaximumUserLoad());
        }
        catch (LoadTestLicenseViolationException exception4)
        {
            this.ProcessException(exception4, this.m_counterWriter > null, false);
            throw;
        }

        // ...[생략]...
    }

    internal class LoadTestControllerPlugin : IControllerPlugin
    {
        public void Initialize(IControllerContext testContext)
        {
            CheapDateTime.Initialize();
            this.m_context = testContext;
            this.m_suite = this.m_context.get_TestElement();
            // ...[생략]...
        }
    }

    // ...[생략]...
}

internal class LoadTestUserLicenseManager
{
    // Fields
    private LoadTestFeature m_allowedFeatures;
    private bool m_isRemote;

    // Methods
    internal LoadTestUserLicenseManager(LoadTestFeature allowedFeatures, bool isRemote)
    {
        this.m_allowedFeatures = allowedFeatures;
        this.m_isRemote = isRemote;
    }
    
    public void CheckForLoadTestExecution()
    {
        if ((this.m_allowedFeatures & 4) == null)
        {
            WebTestLoadTrace.Warning("LoadTestResultsCollector.Initialize(): MaxAllowedVUsers is 0.");
            LoadTestLicenseViolationException exception = new LoadTestLicenseViolationException((string) Messages.WebLoadTestExecution_NoLicenseShort);
            throw exception;
        }
    }
 
    public void CheckForRemoteExecution();
    public void CheckUserCountForLoadTest(long userLoad);
}

[CompilerGenerated, TypeIdentifier("A94BC0A0-5884-4D45-8C9E-D9BF9CA0C99A", "Microsoft.VisualStudio.LicenseManagement.Interop._VSSKUEdition")]
public enum _VSSKUEdition
{
    VSEDITION_UNKNOWN,
    VSEDITION_IntShell,
    VSEDITION_Professional,
    VSEDITION_Premium,
    VSEDITION_Ultimate
}

internal class LicenseHandler // Microsoft.VisualStudio.TestTools.WebStress
{
    // Methods
    public LicenseHandler()
    {
        try
        {
            this.InitializeLoadTestLicenseInfo();
        }
        catch (Exception exception)
        {
            /*
            "mstest.exe 실행 시 "Visual Studio Enterprise is required to execute the test." 오류" 글에서 설명한 "Microsoft.VisualStudio.Threading" 로딩 예외의 기록이 여기서 발생한 것입니다.
            
            */
            WebTestLoadTrace.Verbose("LicenseHandler(): Failed to Initialize LoadTestLicense Info: " + exception.ToString());
        }
    }

    [MethodImpl(MethodImplOptions.NoInlining)]
    private void InitializeLoadTestLicenseInfo()
    {
        IVsLicensingState state = VsLicensingStateInitializationHelpers.CreateIVsLicensingStateForOnlineLicensingSKU(OnlineLicensingSKUs.VisualStudio);
        _VSSKUEdition vsEdition = (_VSSKUEdition) state.GetVsEdition();
        WebTestLoadTrace.Verbose("LicenseHandler.InitializeLoadTestLicenseInfo(): skuEdition: " + vsEdition);
        this.IsLicensedForLoadTest = vsEdition == _VSSKUEdition.VSEDITION_Ultimate;
        if (!this.IsLicensedForLoadTest)
        {
            WebTestLoadTrace.Error("LicenseHandler.InitializeLoadTestLicenseInfo(): Failed to Initialize LoadTestLicense Info. Sku is not ultimate");
        }
        else
        {
            IVsClientRights clientRights = null;
            state.RefreshClientRights();
            state.ValidateClientRights(out clientRights, null);
            this.UpdateLicensingInformation(clientRights);
        }
    }

    private void UpdateLicensingInformation(IVsClientRights clientRights)
    {
        if (clientRights == null)
        {
            WebTestLoadTrace.Error("LicenseHandler.UpdateLicensingInformation(): unable to fetch clientRights ");
        }
        else if (!clientRights.IsLicenseGood)
        {
            WebTestLoadTrace.Error("LicenseHandler.UpdateLicensingInformation(): clientrights' license is not valid.");
        }
        else
        {
            this.AvailableFeatures = 4;
            _VSLicenseType licenseType = (_VSLicenseType) clientRights.LicenseType;
            this.IsLicensedForAllLoadTestFeatures = ((this.IsLicensedForLoadTest && (licenseType != _VSLicenseType.VSLICTYPE_UNKNOWN)) && ((licenseType != _VSLicenseType.VSLICTYPE_TrialPID) && (licenseType != _VSLicenseType.VSLICTYPE_VSExtensionTrial))) && (licenseType != _VSLicenseType.VSLICTYPE_PrereleaseTrialPID);
            WebTestLoadTrace.Verbose("LicenseHandler.UpdateLicensingInformation(): licenseType: " + licenseType);
            if (this.IsLicensedForAllLoadTestFeatures)
            {
                this.AvailableFeatures |= 8;
                this.AvailableFeatures |= 0x20;
            }
        }
    }

    // Properties
    public LoadTestFeature AvailableFeatures { get; [CompilerGenerated] private set; }
    public bool IsLicensedForAllLoadTestFeatures { get; [CompilerGenerated] private set; }
    public bool IsLicensedForLoadTest { get; [CompilerGenerated] private set; }
}

// C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\PrivateAssemblies\
// Microsoft.VisualStudio.Shell.Connected, Version=16.0.0.0

public enum OnlineLicensingSKUs
{
    VisualStudio,
    VSWinExpress,
    VWDExpress,
    WDExpress
}

public static class VsLicensingStateInitializationHelpers
{
    // Fields
    private const string InstallDirValueName = "InstallDir";

    // Methods
    public static IVsLicensingState CreateIVsLicensingStateForOnlineLicensingSKU(OnlineLicensingSKUs sku)
    {
        IVsClientRightsTokenCacheManager clientRightsTokenCacheManager = new VsClientRightsTokenCacheManager();
        IVsLicensingState state = new VsLicensingState();
        if (state != null)
        {
            IVsLicensingStateInitialize initialize = (IVsLicensingStateInitialize) state;
            Guid subscriptionLicenseId = new Guid(sku.LicenseId());
            initialize.InitializeForPidAndOnlineLicensing(null, (int) sku.ProductFamily(), ref subscriptionLicenseId, sku.RightsName(), sku.RegistryRoot(), clientRightsTokenCacheManager, null);
        }
        return state;
    }

    public static IVsLicensingState CreateIVsLicensingStateForPidLicensedSKU(_VSPIDFamily pidFamily);
    public static string GetVisualStudioInstallPath();
}

public static class VsLicensingStateInitializationConstants
{
    // Methods
    public static string LicenseId(this OnlineLicensingSKUs sku)
    {
        switch (sku)
        {
            case OnlineLicensingSKUs.VisualStudio:
                return "715f10eb-9e99-11d2-bfc2-00c04f990235";

            case OnlineLicensingSKUs.VSWinExpress:
                return "E16EC553-041C-403A-A275-958469FCDE74";

            case OnlineLicensingSKUs.VWDExpress:
                return "68CBDD3E-C6BC-4d26-84B6-6411EA3C327A";

            case OnlineLicensingSKUs.WDExpress:
                return "971DCC97-7904-4F36-9744-D21D39B557B3";
        }
        throw new ArgumentException("Invalid sku type for LicenseIds");
    }

    public static _VSPIDFamily ProductFamily(this OnlineLicensingSKUs sku)
    {
        switch (sku)
        {
            case OnlineLicensingSKUs.VisualStudio:
                return _VSPIDFamily.VSPID_GROUP_VS;

            case OnlineLicensingSKUs.VSWinExpress:
                return _VSPIDFamily.VSPID_GROUP_VSWIN;

            case OnlineLicensingSKUs.VWDExpress:
                return _VSPIDFamily.VSPID_GROUP_VWD;

            case OnlineLicensingSKUs.WDExpress:
                return _VSPIDFamily.VSPID_GROUP_V1;
        }
        throw new ArgumentException("Invalid sku type for ProductFamily");
    }

    public static string RegistryRoot(this OnlineLicensingSKUs sku) => 
        Path.Combine(@"Software\Microsoft", sku.RightsName(), VSGeneralVersion);

    public static string RightsName(this OnlineLicensingSKUs sku)
    {
        switch (sku)
        {
            case OnlineLicensingSKUs.VisualStudio:
                return "VisualStudio";

            case OnlineLicensingSKUs.VSWinExpress:
                return "VSWinExpress";

            case OnlineLicensingSKUs.VWDExpress:
                return "VWDExpress";

            case OnlineLicensingSKUs.WDExpress:
                return "WDExpress";
        }
        throw new ArgumentException("Invalid sku type for RightsName");
    }
    
    // Properties
    public static string VSGeneralVersion => "16.0";
}

// C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE
// Microsoft.VisualStudio.ProductKeyDialog.dll

public class VsLicensingState : IVsLicensingState, IVsLicensingStateInitialize2, IVsLicensingStateInitialize, IVsCurrentVsEdition
{
    // ...[생략]...
    private VsClientRightsToken GetUserClientRightTokens(VisualStudioLicenseSource source);

    public int GetVsEdition() => ((int) ProductLicensingUtilities.MapToVSSKUEdition((_VSSKUEdition2) this.CurrentVsEdition));

    [AsyncStateMachine(typeof(<InitializeAsync>d__30))]
    private Task InitializeAsync(JoinableTaskContext joinableTaskContext, int productFamily, bool isSubscriptionAware, Guid subscriptionLicenseId, string subscriptionRightsName, string registryRoot, IVsClientRightsTokenCacheManager vsClientRightsTokenCacheManager, IVsOnlineLicensingManager onlineLicensingManager);

    public void InitializeForPidAndOnlineLicensing(object joinableTaskContext, int productFamily, ref Guid subscriptionLicenseId, string subscriptionRightsName, string registryRoot, IVsClientRightsTokenCacheManager clientRightsTokenCacheManager, IVsOnlineLicensingManager onlineLicensingManager)
    {
        JoinableTaskContext jtc = ((JoinableTaskContext) joinableTaskContext) ?? this.CreateJoinableTaskContext();
        Guid subscriptionLicenseIdLocal = subscriptionLicenseId;
        jtc.Factory.Run(() => this.InitializeForPidAndOnlineLicensingAsync(jtc, productFamily, subscriptionLicenseIdLocal, subscriptionRightsName, registryRoot, clientRightsTokenCacheManager, onlineLicensingManager));
    }
 
    public Task InitializeForPidAndOnlineLicensingAsync(JoinableTaskContext joinableTaskContext, int productFamily, Guid subscriptionLicenseId, string subscriptionRightsName, string registryRoot, IVsClientRightsTokenCacheManager clientRightsTokenCacheManager, IVsOnlineLicensingManager onlineLicensingManager) => 
        this.InitializeAsync(joinableTaskContext, productFamily, true, subscriptionLicenseId, subscriptionRightsName, registryRoot, clientRightsTokenCacheManager, onlineLicensingManager);


    public void InitializeForPidLicensingOnly(object joinableTaskContext, int productFamily, IVsOnlineLicensingManager onlineLicensingManager);
    public Task InitializeForPidLicensingOnlyAsync(JoinableTaskContext joinableTaskContext, int productFamily, IVsOnlineLicensingManager onlineLicensingManager);
    // ...[생략]...
}

internal static class ProductLicensingUtilities
{
    // Methods
    internal static bool EqualsDateTimeMax(DateTimeOffset expirationDate);
    internal static int GetMPCofCurrentVSInstance(IVsOnlineOperationLogger logger = null);
    internal static _VSSKUEdition2 GetVSSKUEditionFromSubscriptionFamilyLevel(string subscriptionFamilyLevel);

    internal static _VSSKUEdition MapToVSSKUEdition(_VSSKUEdition2 skuEdition2)
    {
        if (skuEdition2 <= _VSSKUEdition2.VSEDITION2_IntShell)
        {
            if (skuEdition2 == _VSSKUEdition2.VSEDITION2_UNKNOWN)
            {
                goto Label_0029;
            }
            if (skuEdition2 == _VSSKUEdition2.VSEDITION2_IntShell)
            {
                return _VSSKUEdition.VSEDITION_IntShell;
            }
            goto Label_0031;
        }
        if (skuEdition2 != _VSSKUEdition2.VSEDITION2_Community)
        {
            if (skuEdition2 == _VSSKUEdition2.VSEDITION2_Professional)
            {
                return _VSSKUEdition.VSEDITION_Professional;
            }
            if (skuEdition2 == _VSSKUEdition2.VSEDITION2_Ultimate)
            {
                return _VSSKUEdition.VSEDITION_Ultimate;
            }
            goto Label_0031;
        }
    Label_0029:
        return _VSSKUEdition.VSEDITION_UNKNOWN;
    Label_0031:
        return _VSSKUEdition.VSEDITION_UNKNOWN;
    }

    internal static string TrimPrefix(this string s, string prefix);
}




mstest.exe의 라이선스와 관련해 문제가 발생하면 위의 소스 코드에서 "WebTestLoadTrace"로 남겨지는 로그들을 함께 추적해 보면 원인을 추적할 수 있습니다. 한 가지 위의 소스 코드를 통해 알 수 있었던 재미있는 점은, Ultimate 에디션의 경우 명칭은 사라졌지만 결국 Enterprise의 내부 이름으로 남아 있다는 것입니다.

마지막으로, 실제적인 라이선스 체크는 PInvoke를 통한 내부 C/C++ 함수로 호출이 된다는 점!




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 5/8/2019]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12850정성태10/27/20218598오류 유형: 765. 우분투에서 pip install mysqlclient 실행 시 "OSError: mysql_config not found" 오류
12849정성태10/17/20217743스크립트: 33. JavaScript와 C#의 시간 변환 [1]
12848정성태10/17/20218711스크립트: 32. 파이썬 - sqlite3 기본 예제 코드 [1]
12847정성태10/14/20218565스크립트: 31. 파이썬 gunicorn - WORKER TIMEOUT 오류 발생
12846정성태10/7/20218322스크립트: 30. 파이썬 __debug__ 플래그 변수에 따른 코드 실행 제어
12845정성태10/6/20218158.NET Framework: 1120. C# - BufferBlock<T> 사용 예제 [5]파일 다운로드1
12844정성태10/3/20216171오류 유형: 764. MSI 설치 시 "... is accessible and not read-only." 오류 메시지
12843정성태10/3/20216628스크립트: 29. 파이썬 - fork 시 기존 클라이언트 소켓 및 스레드의 동작파일 다운로드1
12842정성태10/1/202124933오류 유형: 763. 파이썬 오류 - AttributeError: type object '...' has no attribute '...'
12841정성태10/1/20218429스크립트: 28. 모든 파이썬 프로세스에 올라오는 특별한 파일 - sitecustomize.py
12840정성태9/30/20218507.NET Framework: 1119. Entity Framework의 Join 사용 시 다중 칼럼에 대한 OR 조건 쿼리파일 다운로드1
12839정성태9/15/20219555.NET Framework: 1118. C# 11 - 제네릭 타입의 특성 적용파일 다운로드1
12838정성태9/13/20219210.NET Framework: 1117. C# - Task에 전달한 Action, Func 유형에 따라 달라지는 async/await 비동기 처리 [2]파일 다운로드1
12837정성태9/11/20218137VC++: 151. Golang - fmt.Errorf, errors.Is, errors.As 설명
12836정성태9/10/20217729Linux: 45. 리눅스 - 실행 중인 다른 프로그램의 출력을 확인하는 방법
12835정성태9/7/20218990.NET Framework: 1116. C# 10 - (15) CallerArgumentExpression 특성 추가 [2]파일 다운로드1
12834정성태9/7/20217363오류 유형: 762. Visual Studio 2019 Build Tools - 'C:\Program' is not recognized as an internal or external command, operable program or batch file.
12833정성태9/6/20216808VC++: 150. Golang - TCP client/server echo 예제 코드파일 다운로드1
12832정성태9/6/20217656VC++: 149. Golang - 인터페이스 포인터가 의미 있을까요?
12831정성태9/6/20216191VC++: 148. Golang - 채널에 따른 다중 작업 처리파일 다운로드1
12830정성태9/6/20218434오류 유형: 761. Internet Explorer에서 파일 다운로드 시 "Your current security settings do not allow this file to be downloaded." 오류
12829정성태9/5/202110067.NET Framework: 1115. C# 10 - (14) 구조체 타입에 기본 생성자 정의 가능파일 다운로드1
12828정성태9/4/20218204.NET Framework: 1114. C# 10 - (13) 단일 파일 내에 적용되는 namespace 선언파일 다운로드1
12827정성태9/4/20218164스크립트: 27. 파이썬 - 웹 페이지 데이터 수집을 위한 scrapy Crawler 사용법 요약
12826정성태9/3/202110415.NET Framework: 1113. C# 10 - (12) 문자열 보간 성능 개선 [1]파일 다운로드1
12825정성태9/3/20217989개발 환경 구성: 603. GoLand - WSL 환경과 연동
... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...