diff --git a/sdk/providerhub/azure-resourcemanager-providerhub/pom.xml b/sdk/providerhub/azure-resourcemanager-providerhub/pom.xml
index 0acdad51b44dc..91437a4c23582 100644
--- a/sdk/providerhub/azure-resourcemanager-providerhub/pom.xml
+++ b/sdk/providerhub/azure-resourcemanager-providerhub/pom.xml
@@ -57,5 +57,35 @@
azure-core-management
1.11.2
+
+ com.azure.resourcemanager
+ azure-resourcemanager-resources
+ 2.28.0
+ test
+
+
+ com.azure
+ azure-core-test
+ 1.18.0
+ test
+
+
+ com.azure
+ azure-identity
+ 1.9.1
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.9.3
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ 5.9.3
+ test
+
diff --git a/sdk/providerhub/azure-resourcemanager-providerhub/src/test/java/com/azure/resourcemanager/providerhub/ProviderHubManagerTests.java b/sdk/providerhub/azure-resourcemanager-providerhub/src/test/java/com/azure/resourcemanager/providerhub/ProviderHubManagerTests.java
new file mode 100644
index 0000000000000..29a254c6f3cc8
--- /dev/null
+++ b/sdk/providerhub/azure-resourcemanager-providerhub/src/test/java/com/azure/resourcemanager/providerhub/ProviderHubManagerTests.java
@@ -0,0 +1,105 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.azure.resourcemanager.providerhub;
+
+import com.azure.core.credential.TokenCredential;
+import com.azure.core.http.policy.HttpLogDetailLevel;
+import com.azure.core.http.policy.HttpLogOptions;
+import com.azure.core.management.AzureEnvironment;
+import com.azure.core.management.Region;
+import com.azure.core.management.profile.AzureProfile;
+import com.azure.core.test.TestBase;
+import com.azure.core.test.annotation.DoNotRecord;
+import com.azure.core.util.Configuration;
+import com.azure.core.util.CoreUtils;
+import com.azure.identity.DefaultAzureCredentialBuilder;
+import com.azure.resourcemanager.providerhub.fluent.models.OperationsDefinitionInner;
+import com.azure.resourcemanager.providerhub.models.OperationsContent;
+import com.azure.resourcemanager.providerhub.models.OperationsDefinitionDisplay;
+import com.azure.resourcemanager.providerhub.models.OperationsPutContent;
+import com.azure.resourcemanager.resources.ResourceManager;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.Random;
+
+public class ProviderHubManagerTests extends TestBase {
+ private static final Random RANDOM = new Random();
+ private static final Region REGION = Region.US_WEST2;
+ private String resourceGroupName = "rg" + randomPadding();
+ private ProviderHubManager providerHubManager;
+ private ResourceManager resourceManager;
+ private boolean testEnv;
+
+ @Override
+ public void beforeTest() {
+ final TokenCredential credential = new DefaultAzureCredentialBuilder().build();
+ final AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
+
+ providerHubManager = ProviderHubManager
+ .configure()
+ .withLogOptions(new HttpLogOptions().setLogLevel(HttpLogDetailLevel.BASIC))
+ .authenticate(credential, profile);
+
+ resourceManager = ResourceManager
+ .configure()
+ .withLogOptions(new HttpLogOptions().setLogLevel(HttpLogDetailLevel.BASIC))
+ .authenticate(credential, profile).withDefaultSubscription();
+
+ // use AZURE_RESOURCE_GROUP_NAME if run in LIVE CI
+ String testResourceGroup = Configuration.getGlobalConfiguration().get("AZURE_RESOURCE_GROUP_NAME");
+ testEnv = !CoreUtils.isNullOrEmpty(testResourceGroup);
+ if (testEnv) {
+ resourceGroupName = testResourceGroup;
+ } else {
+ resourceManager.resourceGroups().define(resourceGroupName).withRegion(REGION).create();
+ }
+ }
+
+ @Override
+ protected void afterTest() {
+ if (!testEnv) {
+ resourceManager.resourceGroups().beginDeleteByName(resourceGroupName);
+ }
+ }
+
+ @Test
+ @DoNotRecord(skipInPlayback = true)
+ public void testCreateOperation() {
+ OperationsContent operationsContent = null;
+ String spaceName = "Microsoft.Contoso" + randomPadding();
+ String opeartionName = spaceName + "/Employees/Read";
+ try {
+ // @embedmeStart
+ operationsContent = providerHubManager.operations()
+ .createOrUpdate(spaceName,
+ new OperationsPutContent()
+ .withContents(
+ Arrays.asList(
+ new OperationsDefinitionInner()
+ .withName(opeartionName)
+ .withDisplay(new OperationsDefinitionDisplay()
+ .withProvider(spaceName)
+ .withResource("Employees")
+ .withOperation("Gets/List employee resources")
+ .withDescription("Read employees")))));
+ // @embedmeEnd
+ Assertions.assertTrue(
+ providerHubManager.operations().listByProviderRegistration(spaceName)
+ .stream().filter(operationsDefinition ->
+ spaceName.equals(operationsDefinition.display().provider())
+ && opeartionName.equals(operationsDefinition.name()))
+ .findAny().isPresent());
+ } finally {
+ if (operationsContent != null) {
+ providerHubManager.operations().delete(spaceName);
+ }
+ }
+ }
+
+ private static String randomPadding() {
+ return String.format("%05d", Math.abs(RANDOM.nextInt() % 100000));
+ }
+}
diff --git a/sdk/providerhub/test-resources.bicep b/sdk/providerhub/test-resources.bicep
new file mode 100644
index 0000000000000..2250946806c02
--- /dev/null
+++ b/sdk/providerhub/test-resources.bicep
@@ -0,0 +1,27 @@
+@description('The tenant id to which the application and resources belong.')
+param tenantId string = '72f988bf-86f1-41af-91ab-2d7cd011db47'
+
+@description('The client id of the service principal used to run tests.')
+param testApplicationId string
+
+@description('This is the object id of the service principal used to run tests.')
+param testApplicationOid string
+
+@description('The application client secret used to run tests.')
+param testApplicationSecret string
+
+var contributorRoleId = '/subscriptions/${subscription().subscriptionId}/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c'
+
+resource contributorRoleId_name 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
+ name: guid('contributorRoleId${resourceGroup().name}')
+ properties: {
+ roleDefinitionId: contributorRoleId
+ principalId: testApplicationOid
+ }
+}
+
+output AZURE_TENANT_ID string = tenantId
+output AZURE_CLIENT_ID string = testApplicationId
+output AZURE_CLIENT_SECRET string = testApplicationSecret
+output AZURE_SUBSCRIPTION_ID string = subscription().subscriptionId
+output AZURE_RESOURCE_GROUP_NAME string = resourceGroup().name
diff --git a/sdk/providerhub/tests.mgmt.yml b/sdk/providerhub/tests.mgmt.yml
new file mode 100644
index 0000000000000..8f097f7636cd2
--- /dev/null
+++ b/sdk/providerhub/tests.mgmt.yml
@@ -0,0 +1,16 @@
+trigger: none
+
+pr: none
+
+stages:
+ - template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml
+ parameters:
+ ServiceDirectory: providerhub
+ Artifacts:
+ - name: azure-resourcemanager-providerhub
+ groupId: com.azure.resourcemanager
+ safeName: azureresourcemanagerproviderhub
+ Clouds: 'Public'
+ # Only run tests on Windows to save cost.
+ MatrixFilters:
+ - pool=.*(win).*
\ No newline at end of file