Example #1
0
        public void TestValidateThrowsExceptionLogsCountIsLessThan1()
        {
            IList <Log> logList   = new List <Log>();
            var         container = new LogContainer(logList);

            Assert.ThrowsException <ValidationException>(() => container.Validate());
        }
        private string CreateLogsContent(IList <Log> logs)
        {
            var logContainer = new LogContainer(logs);

            // Serialize request.
            var requestContent = LogSerializer.Serialize(logContainer);

            return(requestContent);
        }
Example #3
0
 public void SetLoger(LogContainer logContainer)
 {
     this.logContainer           = logContainer;
     this.logContainer.OnLogging = this.OnLogging;
     foreach (var log in logContainer.GetLogs())
     {
         this.listTemplates.Items.Add(log);
     }
 }
        public async Task <IHttpActionResult> GetInvocationLog(Guid id)
        {
            // Locate the blob
            var blob = LogContainer.GetBlockBlobReference("invocations/" + id.ToString("N") + ".json");

            if (!await blob.ExistsAsync())
            {
                return(NotFound());
            }

            return(await TransferBlob(blob.Uri));
        }
Example #5
0
 internal ProcessState(BusinessProcess process, ProcessStepComplete complete, ProcessStepError error)
 {
     _process = process;
     _evnt    = new AutoResetEvent(true);
     _doc     = new XmlDocument();
     _doc.LoadXml(_BASE_STATE);
     _stateElement = (XmlElement)_doc.GetElementsByTagName(_PROCESS_STATE_ELEMENT)[0];
     _log          = new LogContainer(this);
     _variables    = new StateVariableContainer(this);
     _suspensions  = new SuspendedStepContainer(this);
     _path         = new ProcessPath(complete, error, new processStateChanged(_stateChanged), this);
 }
Example #6
0
        public void TestInstanceConstruction()
        {
            var mockLog = new Mock <Log>();
            var logList = new List <Log> {
                mockLog.Object, mockLog.Object, mockLog.Object
            };
            var emptyContainer = new LogContainer();
            var container      = new LogContainer(logList);

            Assert.IsNotNull(emptyContainer);
            Assert.IsNotNull(container);
            CollectionAssert.AreEquivalent(logList, (List <Log>)container.Logs);
        }
Example #7
0
        public void TestValidateCallValidateOnEveryItem()
        {
            var         mockLog = new Mock <Log>();
            IList <Log> logList = new List <Log>
            {
                mockLog.Object,
                mockLog.Object,
                mockLog.Object
            };
            var container = new LogContainer(logList);

            container.Validate();

            mockLog.Verify(log => log.Validate(), Times.Exactly(logList.Count));
        }
        private string CreateLogsContent(IList <Log> logs)
        {
            var logContainer = new LogContainer(logs);

            // Save times
            foreach (var log in logContainer.Logs)
            {
                log.Toffset = TimeHelper.CurrentTimeInMilliseconds() - log.Toffset;
            }

            // Serialize request
            var requestContent = LogSerializer.Serialize(logContainer);

            return(requestContent);
        }
Example #9
0
        public void TestValidateThrowsExceptionWhenLogsIsNull()
        {
            var container = new LogContainer(null);

            Assert.ThrowsException <ValidationException>(() => container.Validate());
        }
Example #10
0
 public bool ReadLog(string filePath)
 {
     logContainer = new LogContainer();
     readSuccess  = logContainer.ReadLog(filePath);
     return(readSuccess);
 }
Example #11
0
 public LogParser(LogContainer container)
 {
     this.container = container;
 }
        /// <summary>
        /// Send logs to the Ingestion service.
        /// </summary>
        /// <param name='appSecret'>
        /// A unique and secret key used to identify the application.
        /// </param>
        /// <param name='installID'>
        /// Installation identifier.
        /// </param>
        /// <param name='parameters'>
        /// Payload.
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="HttpOperationException">
        /// Thrown when the operation returned an invalid status code
        /// </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 <HttpOperationResponse> SendWithHttpMessagesAsync(System.Guid appSecret, System.Guid installID, LogContainer parameters, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (ApiVersion == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion");
            }
            if (parameters == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
            }
            if (parameters != null)
            {
                parameters.Validate();
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("appSecret", appSecret);
                tracingParameters.Add("installID", installID);
                tracingParameters.Add("parameters", parameters);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "Send", tracingParameters);
            }
            // Construct URL
            var           _baseUrl         = BaseUri.AbsoluteUri;
            var           _url             = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "logs").ToString();
            List <string> _queryParameters = new List <string>();

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

            _httpRequest.Method     = new HttpMethod("POST");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers
            if (_httpRequest.Headers.Contains("App-Secret"))
            {
                _httpRequest.Headers.Remove("App-Secret");
            }
            _httpRequest.Headers.TryAddWithoutValidation("App-Secret", SafeJsonConvert.SerializeObject(appSecret, SerializationSettings).Trim('"'));
            if (_httpRequest.Headers.Contains("Install-ID"))
            {
                _httpRequest.Headers.Remove("Install-ID");
            }
            _httpRequest.Headers.TryAddWithoutValidation("Install-ID", SafeJsonConvert.SerializeObject(installID, SerializationSettings).Trim('"'));


            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 (parameters != null)
            {
                _requestContent      = SafeJsonConvert.SerializeObject(parameters, 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");
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await 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)
            {
                var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                if (_httpResponse.Content != null)
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
                }
                else
                {
                    _responseContent = string.Empty;
                }
                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 HttpOperationResponse();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }
Example #13
0
 public void Copy()
 {
     LogContainer.Copy();
 }
Example #14
0
 /// <summary>
 /// Send logs to the Ingestion service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='appSecret'>
 /// A unique and secret key used to identify the application.
 /// </param>
 /// <param name='installID'>
 /// Installation identifier.
 /// </param>
 /// <param name='parameters'>
 /// Payload.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task SendAsync(this IAvalancheIngestion operations, System.Guid appSecret, System.Guid installID, LogContainer parameters, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.SendWithHttpMessagesAsync(appSecret, installID, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
Example #15
0
 /// <summary>
 /// Send logs to the Ingestion service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='appSecret'>
 /// A unique and secret key used to identify the application.
 /// </param>
 /// <param name='installID'>
 /// Installation identifier.
 /// </param>
 /// <param name='parameters'>
 /// Payload.
 /// </param>
 public static void Send(this IAvalancheIngestion operations, System.Guid appSecret, System.Guid installID, LogContainer parameters)
 {
     operations.SendAsync(appSecret, installID, parameters).GetAwaiter().GetResult();
 }
Example #16
0
 public static string Serialize(LogContainer logContainer)
 {
     return(JsonConvert.SerializeObject(logContainer, SerializationSettings));
 }
Example #17
0
		public static void Initialize(IMain main)
		{
			Main = main;
			_logContainer = new LogContainer();
			ServiceLocator.Locator.Register<ILogger>(_logContainer);
			ServiceLocator.Locator.Register<IMain>(Main);
			ServiceLocator.Locator.Register<ICoroutinesManager>(Main.CoroutinesManager);
			_logContainer.SetLoggingLevel(_loggingLevel);
			Log = _logContainer;
			Main.Log = _logContainer;
			Main.CoroutinesManager.Log = _logContainer;
		}