Skip to content

Commit cb72d0e

Browse files
committed
Merge pull request #3 from akhadem/dev
merge from akhadm/azure-powershell/dev
2 parents 5a88b9a + 27efac5 commit cb72d0e

File tree

40 files changed

+4162
-5235
lines changed

40 files changed

+4162
-5235
lines changed

src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Authorization.0.11.0-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll</HintPath>
5050
</Reference>
5151
<Reference Include="Microsoft.Azure.Management.DataFactories">
52-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.DataFactories.0.11.4-preview\lib\net40\Microsoft.Azure.Management.DataFactories.dll</HintPath>
52+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.DataFactories.0.12.0-preview\lib\net40\Microsoft.Azure.Management.DataFactories.dll</HintPath>
5353
</Reference>
5454
<Reference Include="Microsoft.Azure.Monitoring">
5555
<HintPath>..\..\..\packages\Microsoft.Azure.Monitoring.2.2.0-preview\lib\net40\Microsoft.Azure.Monitoring.dll</HintPath>
@@ -259,9 +259,6 @@
259259
<None Include="SessionRecords\Microsoft.Azure.Commands.DataFactories.Test.LinkedServiceTests\TestLinkedServiceWithDataFactoryParameter.json">
260260
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
261261
</None>
262-
<None Include="SessionRecords\Microsoft.Azure.Commands.DataFactories.Test.PipelineTests\TestPipeline.json">
263-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
264-
</None>
265262
<None Include="SessionRecords\Microsoft.Azure.Commands.DataFactories.Test.TableTests\TestGetTableWithEmptyName.json">
266263
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
267264
</None>

src/ResourceManager/DataFactories/Commands.DataFactories.Test/Resources/pipeline.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
inputs: [ {name: "inputTable"} ],
1111
outputs: [ {name: "outputTable"} ],
1212
linkedServiceName: "foo2",
13-
type: "CustomActivity",
13+
type: "DotNetActivity",
1414
transformation:
1515
{
1616
assemblyName: "mycode.dll",

src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoryGatewayTests.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,9 @@ function Test-DataFactoryGateway
5050
$gwname = "foo"
5151
$description = "description"
5252

53-
$actual = New-AzureDataFactoryGateway -ResourceGroupName $rgname -DataFactoryName $dfname -Name $gwname -Location $dflocation
53+
$actual = New-AzureDataFactoryGateway -ResourceGroupName $rgname -DataFactoryName $dfname -Name $gwname
5454
$expected = Get-AzureDataFactoryGateway -ResourceGroupName $rgname -DataFactoryName $dfname -Name $gwname
5555
Assert-AreEqual $actual.Name $expected.Name
56-
Assert-AreEqual $actual.Location $expected.Location
5756

5857
$key = New-AzureDataFactoryGatewayKey -ResourceGroupName $rgname -DataFactoryName $dfname -GatewayName $gwname
5958
Assert-NotNull $key
@@ -91,10 +90,9 @@ function Test-DataFactoryGatewayWithDataFactoryParameter
9190
$gwname = "foo"
9291
$description = "description"
9392

94-
$actual = New-AzureDataFactoryGateway -DataFactory $datafactory -Name $gwname -Location $dflocation
93+
$actual = New-AzureDataFactoryGateway -DataFactory $datafactory -Name $gwname
9594
$expected = Get-AzureDataFactoryGateway -DataFactory $datafactory -Name $gwname
9695
Assert-AreEqual $actual.Name $expected.Name
97-
Assert-AreEqual $actual.Location $expected.Location
9896

9997
$key = New-AzureDataFactoryGatewayKey -DataFactory $datafactory -GatewayName $gwname
10098
Assert-NotNull $key

src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/PipelineTests.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ namespace Microsoft.Azure.Commands.DataFactories.Test
1919
{
2020
public class PipelineTests : DataFactoriesScenarioTestsBase
2121
{
22-
[Fact]
23-
[Trait(Category.AcceptanceType, Category.CheckIn)]
24-
public void TestPipeline()
25-
{
26-
RunPowerShellTest("Test-Pipeline");
27-
}
22+
//Temporarily pending because of server issue.
23+
//[Fact]
24+
//[Trait(Category.AcceptanceType, Category.CheckIn)]
25+
//public void TestPipeline()
26+
//{
27+
// RunPowerShellTest("Test-Pipeline");
28+
//}
2829
}
2930
}

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGateway.json

Lines changed: 192 additions & 252 deletions
Large diffs are not rendered by default.

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestCreateDataFactoryGatewayWithDataFactoryParameter.json

Lines changed: 209 additions & 209 deletions
Large diffs are not rendered by default.

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryGatewayTests/TestGetNonExistingDataFactoryGateway.json

Lines changed: 150 additions & 87 deletions
Large diffs are not rendered by default.

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestCreateDataFactory.json

Lines changed: 106 additions & 169 deletions
Large diffs are not rendered by default.

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDataFactoryPiping.json

Lines changed: 113 additions & 176 deletions
Large diffs are not rendered by default.

src/ResourceManager/DataFactories/Commands.DataFactories.Test/SessionRecords/Microsoft.Azure.Commands.DataFactories.Test.DataFactoryTests/TestDeleteDataFactoryWithDataFactoryParameter.json

Lines changed: 96 additions & 159 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)