-
Notifications
You must be signed in to change notification settings - Fork 4k
Merge NRP's August branch in preview #7113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
bf78734
c4e06f2
4e991f0
15e68a3
820085d
e54e1da
d7c8b5e
40202fc
2d2b187
5588e10
3be9ec5
68edf73
7524e7a
9b4b6ff
bd507c7
b35f05e
8eef946
cee2856
59d35f3
e62c540
6cc0f96
7698379
c21d80a
b9f1ea3
608ea9b
df43a45
fed69ad
b96ea7f
c483a38
ceefbb9
9aff4e0
456419e
6562f3c
e71e743
a88436e
68c7269
be6f0f1
552b513
4b62c05
5b9d249
54a1412
72643d4
398f807
4ae0218
aab303e
d13f067
9870c05
ac1c576
0acdc4d
f294a20
ebe2bdc
bd4a8b2
49bdcf1
240f15e
17602f3
b1733bb
ad408c0
d331c97
1cddb6d
ad36a7e
03ca123
736bc4f
9fb691a
88f1384
f6a598e
006f29b
adfb265
f5e16a9
97fdb84
6cd8b6e
b25554f
16323b6
af207c1
f098492
7c766d4
4eb8048
31cdab2
5c9115d
f57c16f
b10e728
ab315e9
5496f7f
81b7753
cd82507
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ public void TestPacketCapture() | |
NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-PacketCapture"); | ||
} | ||
|
||
[Fact(Skip = "Rerecord tests")] | ||
[Fact(Skip = "Skipped for due to playback mode failures.")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The test failure needs to be investigated... what caused it to now fail in playback mode? |
||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(Category.Owner, Category.netanalyticsdev)] | ||
public void TestTroubleshoot() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// | ||
// Copyright Microsoft Corporation | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// ---------------------------------------------------------------------------------- | ||
|
||
namespace Commands.Network.Test.ScenarioTests | ||
{ | ||
using global::Commands.Network.Test; | ||
using Microsoft.Azure.ServiceManagemenet.Common.Models; | ||
using Microsoft.WindowsAzure.Commands.ScenarioTest; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
public class PublicIpPrefixTests : Microsoft.WindowsAzure.Commands.Test.Utilities.Common.RMTestBase | ||
{ | ||
public XunitTracingInterceptor _logger; | ||
|
||
public PublicIpPrefixTests(Xunit.Abstractions.ITestOutputHelper output) | ||
{ | ||
_logger = new XunitTracingInterceptor(output); | ||
XunitTracingInterceptor.AddToContext(_logger); | ||
} | ||
|
||
[Fact] | ||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(Category.Owner, Category.sdnnrp)] | ||
public void TestPublicIpPrefixCRUD() | ||
{ | ||
NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-PublicIpPrefixCRUD"); | ||
} | ||
|
||
[Fact] | ||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(Category.Owner, Category.sdnnrp)] | ||
public void TestPublicIpPrefixAllocatePublicIpAddress() | ||
{ | ||
NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-PublicIpPrefixAllocatePublicIpAddress"); | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the bump in the network SDK version is causing this test to fail in playback? this needs to b looked at...