c74037b1f2
1 Add a meta tag to HTML files for requesting proper IE feature level. 2 Modify all CSS style declarations to use rem instead of px. |
||
---|---|---|
InstallPrerequisites | ||
docs | ||
pipelines | ||
samples/XXXX_ProtocolTestSuite | ||
src | ||
.gitattributes | ||
.gitignore | ||
CONTRIBUTING.md | ||
LICENSE.txt | ||
README.md |
README.md
Protocol Test Framework
The Protocol Test Framework (PTF) is designed to support Microsoft Protocol Test Suites for both Windows and Office Protocol Interoperability testing. It implements the fundamentals to support Protocol Test Suite, including logging, checker, configuration and etc.
Prerequisites
PTF is based on Windows platform. You should install the softwares listed below based on your testing purpose, including their own dependencies.
-
Visual Studio 2017 or higher (Visual Studio 2017 Community recommended), installed with these individual components from the installer:
Section Individual Component in Visual Studio 2017 Individual Component in Visual Studio 2019 Run Windows Protocol Test Suites Build Windows Protocol Test Suites from source code .NET .NET Framework 4.7.1 SDK .NET Framework 4.7.1 SDK Required .NET .NET Framework 4.7.1 targeting pack .NET Framework 4.7.1 targeting pack Required Required Compilers, build tools, and runtime C# and Visual Basic Roslyn compilers C# and Visual Basic Roslyn compilers Required Debugging and testing Testing tools core features Required1 Required1 Note:
1: This individual component is installed in Visual Studio 2019 by default.
-
Spec Explorer 2010 v3.5.3146.0
It is only required if you want to build or run the test suites that contain Model-Based Test cases. If you want to regenerate Model-Based Test cases, you must install Visual Studio 2012.
-
Enable .NET Framework 3.5.1
- Turn Windows features on or off
- Enable .NET Framework 3.5 (includes .NET 2.0 and 3.0)
This is necessary for WiX Toolset.
-
WiX Toolset Visual Studio 2017 Extension or Wix Toolset Visual Studio 2019 Extension
WiX Toolset components required if you want to build test suites or Protocol Test Manager from source code.
You can use the script in InstallPrerequisites folder to automatically download and install these software. Tips when using the script in InstallPrerequisites folder:
- To run the script, open Windows PowerShell, and execute the commands below in the PowerShell Window:
cd ProtocolTestFramework\InstallPrerequisites
.\InstallPrerequisitesForPTF.ps1
- If you meet errors about Execution Policy, make sure you run Windows PowerShell as Administrator, and type the following and enter:
Set-ExecutionPolicy RemoteSigned
You could run the command below to verify if the Execution Policy is correctly set:
Get-ExecutionPolicy
Build
After you clone a copy of this repo, change to the ProtocolTestFramework directory:
cd ProtocolTestFramework
Change to src directory and run build.cmd:
cd src
build.cmd
After the build succeeds, ProtocolTestFrameworkInstaller.msi should be generated in the folder drop\ProtocolTestFramework\installer\
.
Samples
You can find samples of how to develop a protocol test suite using PTF here.
Documentation
- User Guide describes the features of PTF, and how to use them to develop a new protocol test suite.
Contribute
You can find contributing guide here.
License
PTF is under the MIT license.
Microsoft Open Source Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.