Ejemplo n.º 1
0
        private bool DeletePeerAsn(MockContext context, string name)
        {
            this.client = context.GetServiceClient <PeeringManagementClient>();
            PeerAsn peerAsn = null;

            try
            {
                this.client.PeerAsns.Delete(name);
                peerAsn = this.client.PeerAsns.Get(name);
                if (peerAsn == null)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                Assert.Null(peerAsn);
                Assert.NotNull(ex.Message);
                return(true);
            }
        }
Ejemplo n.º 2
0
        private object UpdatePeerValidationState(PeerAsn peerAsn, string asnValidationState)
        {
            // Patch with correct approval
            var url =
                $"api/v1/subscriptions?subscriptionId={this.SubscriptionId}&peerAsnName={peerAsn.Name}&api-version={ApiVersionLatest}&validationState={asnValidationState}";

            try
            {
                var response = this.Send(peerAsn, "PATCH", url);
                return(JsonConvert.DeserializeObject <PeerAsn>(response, this.Client.DeserializationSettings));
            }
            catch
            {
                return(null);
            }
        }
Ejemplo n.º 3
0
        private bool DeletePeerAsn(string name)
        {
            PeerAsn peerAsn = null;

            try
            {
                this.Client.PeerAsns.Delete(name);
                peerAsn = this.Client.PeerAsns.Get(name);
                return(peerAsn == null);
            }
            catch (Exception ex)
            {
                Assert.Null(peerAsn);
                Assert.NotNull(ex.Message);
                return(true);
            }
        }
Ejemplo n.º 4
0
        private string CreatePeerAsn(int asn = 99999, string name = "AS99999", string peerName = "Contoso", bool isApproved = false)
        {
            var peerAsn = new PeerAsn(name)
            {
                PeerName          = peerName,
                PeerAsnProperty   = asn,
                PeerContactDetail = new List <ContactDetail>

                {
                    new ContactDetail
                    {
                        Role  = Role.Noc,
                        Email = $"noc{asn}@contoso.com",
                        Phone = "8888988888"
                    }
                },
                ValidationState = isApproved ? ValidationState.Approved : ValidationState.Pending
            };

            try
            {
                name = $"AS{asn}";
                var result = this.Client.PeerAsns.CreateOrUpdate(name, peerAsn);
                this.UpdatePeerValidationState(result, ValidationState.Approved);
                var resultPeerAsn = this.Client.PeerAsns.Get(name);
                if (isApproved)
                {
                    Thread.Sleep(100);
                    Assert.NotNull(resultPeerAsn);
                    Assert.Equal(ValidationState.Approved, resultPeerAsn.ValidationState);
                }
                Assert.NotNull(resultPeerAsn);
                Assert.Equal(name, resultPeerAsn.Name);
                Assert.Equal(asn, resultPeerAsn.PeerAsnProperty);
                Assert.Equal(peerName, resultPeerAsn.PeerName);
                Assert.NotNull(resultPeerAsn.Id);
                return(resultPeerAsn.Id);
            }
            catch (Exception ex)
            {
                Assert.Equal("NotFound", ex.Message);
            }

            return(string.Empty);
        }
Ejemplo n.º 5
0
        private string CreatePeerAsn(MockContext context, int asn = 99999, string name = "AS99999", string peerName = "Contoso", bool isApproved = false)
        {
            var peerAsn = new PeerAsn(name)
            {
                PeerName        = peerName,
                PeerAsnProperty = asn,
                PeerContactInfo = new ContactInfo

                {
                    Emails = new List <string> {
                        "*****@*****.**"
                    },
                    Phone = new List <string> {
                        "8882668676"
                    }
                },
                ValidationState = isApproved ? ValidationState.Approved : ValidationState.Pending
            };

            this.client = context.GetServiceClient <PeeringManagementClient>();
            try
            {
                var _name    = $"AS{asn}";
                var result   = this.client.PeerAsns.CreateOrUpdate(_name, peerAsn);
                var _peerAsn = this.client.PeerAsns.Get(_name);
                if (isApproved)
                {
                    Thread.Sleep(100);
                    Assert.NotNull(_peerAsn);
                    Assert.Equal(ValidationState.Approved, _peerAsn.ValidationState);
                }
                Assert.NotNull(_peerAsn);
                Assert.Equal(_name, _peerAsn.Name);
                Assert.Equal(asn, _peerAsn.PeerAsnProperty);
                Assert.Equal(peerName, _peerAsn.PeerName);
                Assert.NotNull(_peerAsn.Id);
                return(_peerAsn.Id);
            }
            catch (Exception ex)
            {
                Assert.Equal("NotFound", ex.Message);
            }
            return(string.Empty);
        }
Ejemplo n.º 6
0
        private void updatePeerAsn(MockContext context, int asn)
        {
            string[] phone       = { "9999999" };
            string[] email       = { $"noc{asn}@contoso.com" };
            var      contactInfo = new ContactInfo(email, phone);
            var      peerInfo    = new PeerAsn(peerAsnProperty: asn, peerContactInfo: contactInfo, peerName: $"Contoso{asn}", validationState: "Approved");

            this.client = context.GetServiceClient <PeeringManagementClient>();
            try
            {
                var result  = this.client.PeerAsns.CreateOrUpdate(peerInfo.PeerName, peerInfo);
                var peerAsn = this.client.PeerAsns.Get(peerInfo.PeerName);
                Assert.NotNull(peerAsn);
            }
            catch (Exception exception)
            {
                var peerAsn = this.client.PeerAsns.ListBySubscription();
                Assert.NotNull(peerAsn);
                Assert.NotNull(exception);
            }
        }
Ejemplo n.º 7
0
        private void updatePeerAsn(int asn)
        {
            string phone       = "9999999";
            string email       = $"noc{asn}@contoso.com";
            var    contactInfo = new ContactDetail(Role.Noc, email, phone);
            var    peerInfo    = new PeerAsn(peerAsnProperty: asn, peerContactDetail: new List <ContactDetail> {
                contactInfo
            }, peerName: $"Contoso{asn}", validationState: "Approved");

            try
            {
                var result  = this.Client.PeerAsns.CreateOrUpdate(peerInfo.PeerName, peerInfo);
                var peerAsn = this.Client.PeerAsns.Get(peerInfo.PeerName);
                Assert.NotNull(peerAsn);
            }
            catch (Exception exception)
            {
                var peerAsn = this.Client.PeerAsns.ListBySubscription();
                Assert.NotNull(peerAsn);
                Assert.NotNull(exception);
            }
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Creates a new peer ASN or updates an existing peer ASN with the specified
        /// name under the given subscription.
        /// </summary>
        /// <param name='peerAsnName'>
        /// The peer ASN name.
        /// </param>
        /// <param name='peerAsn'>
        /// The peer ASN.
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="ErrorResponseException">
        /// Thrown when the operation returned an invalid status code
        /// </exception>
        /// <exception cref="SerializationException">
        /// Thrown when unable to deserialize the response
        /// </exception>
        /// <exception cref="ValidationException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <exception cref="System.ArgumentNullException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <AzureOperationResponse <PeerAsn> > CreateOrUpdateWithHttpMessagesAsync(string peerAsnName, PeerAsn peerAsn, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (peerAsnName == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "peerAsnName");
            }
            if (peerAsn == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "peerAsn");
            }
            if (Client.SubscriptionId == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
            }
            if (Client.ApiVersion == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("peerAsnName", peerAsnName);
                tracingParameters.Add("peerAsn", peerAsn);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters);
            }
            // Construct URL
            var _baseUrl = Client.BaseUri.AbsoluteUri;
            var _url     = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Peering/peerAsns/{peerAsnName}").ToString();

            _url = _url.Replace("{peerAsnName}", System.Uri.EscapeDataString(peerAsnName));
            _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
            List <string> _queryParameters = new List <string>();

            if (Client.ApiVersion != null)
            {
                _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
            }
            if (_queryParameters.Count > 0)
            {
                _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
            }
            // Create HTTP transport objects
            var _httpRequest = new HttpRequestMessage();
            HttpResponseMessage _httpResponse = null;

            _httpRequest.Method     = new HttpMethod("PUT");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers
            if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
            {
                _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
            }
            if (Client.AcceptLanguage != null)
            {
                if (_httpRequest.Headers.Contains("accept-language"))
                {
                    _httpRequest.Headers.Remove("accept-language");
                }
                _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
            }


            if (customHeaders != null)
            {
                foreach (var _header in customHeaders)
                {
                    if (_httpRequest.Headers.Contains(_header.Key))
                    {
                        _httpRequest.Headers.Remove(_header.Key);
                    }
                    _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
                }
            }

            // Serialize Request
            string _requestContent = null;

            if (peerAsn != null)
            {
                _requestContent      = Rest.Serialization.SafeJsonConvert.SerializeObject(peerAsn, Client.SerializationSettings);
                _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);

            if (_shouldTrace)
            {
                ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
            }
            HttpStatusCode _statusCode = _httpResponse.StatusCode;

            cancellationToken.ThrowIfCancellationRequested();
            string _responseContent = null;

            if ((int)_statusCode != 200 && (int)_statusCode != 201)
            {
                var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                try
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                    ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject <ErrorResponse>(_responseContent, Client.DeserializationSettings);
                    if (_errorBody != null)
                    {
                        ex.Body = _errorBody;
                    }
                }
                catch (JsonException)
                {
                    // Ignore the exception
                }
                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new AzureOperationResponse <PeerAsn>();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            if (_httpResponse.Headers.Contains("x-ms-request-id"))
            {
                _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
            }
            // Deserialize Response
            if ((int)_statusCode == 200)
            {
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                try
                {
                    _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject <PeerAsn>(_responseContent, Client.DeserializationSettings);
                }
                catch (JsonException ex)
                {
                    _httpRequest.Dispose();
                    if (_httpResponse != null)
                    {
                        _httpResponse.Dispose();
                    }
                    throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
                }
            }
            // Deserialize Response
            if ((int)_statusCode == 201)
            {
                _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                try
                {
                    _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject <PeerAsn>(_responseContent, Client.DeserializationSettings);
                }
                catch (JsonException ex)
                {
                    _httpRequest.Dispose();
                    if (_httpResponse != null)
                    {
                        _httpResponse.Dispose();
                    }
                    throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
                }
            }
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }
Ejemplo n.º 9
0
 /// <summary>
 /// Creates a new peer ASN or updates an existing peer ASN with the specified
 /// name under the given subscription.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='peerAsnName'>
 /// The peer ASN name.
 /// </param>
 /// <param name='peerAsn'>
 /// The peer ASN.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <PeerAsn> CreateOrUpdateAsync(this IPeerAsnsOperations operations, string peerAsnName, PeerAsn peerAsn, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(peerAsnName, peerAsn, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Creates a new peer ASN or updates an existing peer ASN with the specified
 /// name under the given subscription.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='peerAsnName'>
 /// The peer ASN name.
 /// </param>
 /// <param name='peerAsn'>
 /// The peer ASN.
 /// </param>
 public static PeerAsn CreateOrUpdate(this IPeerAsnsOperations operations, string peerAsnName, PeerAsn peerAsn)
 {
     return(operations.CreateOrUpdateAsync(peerAsnName, peerAsn).GetAwaiter().GetResult());
 }