Ejemplo n.º 1
0
        public void StartupTimedoutTest()
        {
            var timeoutErrorHappened = false;

            using (var rabbitMq = new RabbitMqProcess())
            {
                //clear the variable where erlang is, this should make rabbitmq fail to load
                rabbitMq.BinaryPathHelper.ErlangRoot = "";
                try
                {
                    try
                    {
                        rabbitMq.Run().Wait();
                    }
                    catch (Exception error)
                    {
                        throw error.InnerException ?? error;
                    }
                }
                catch (TimeoutException)
                {
                    timeoutErrorHappened = true;
                }
            }

            Debug.Assert(timeoutErrorHappened, "The timout for the process never fired.");
        }
Ejemplo n.º 2
0
 public void StartupTest()
 {
     using (var rabbitMq = new RabbitMqProcess())
     {
         rabbitMq.Run().Wait();
     }
 }