Exemple #1
0
        public void TestSendOrder()
        {
            var nmsClient = new NmsClientApp("TestClient");

            nmsClient.Configure(BrokerUrl, FerCommandQueue);
            nmsClient.Start();

            WaitFor(Connected, nmsClient, 10000);
            Assert.IsTrue(nmsClient.Connected(), "Failed to connect");

            var order     = CreateLimitOrder();
            var messageId = nmsClient.SendOrder(order);

            Assert.IsNotNull(messageId, "Failed to send order");
            Console.WriteLine("Sent message:" + messageId);

            // simulate the server processing
            ProcessTestOrder();

            WaitFor(Response, nmsClient, 3000);
            Assert.GreaterOrEqual(nmsClient.OrderCacheCount, 1, "Failed to receive response");
            var response = nmsClient.GetResponseFor(messageId);

            Assert.IsNotNull(response, "Did not receive response for order " + messageId);
            var sentOrder = nmsClient.GetOrderByKey(order.CacheKey);

            Assert.IsNotNull(sentOrder, "Failed to lookup order by clientOrderID");
            Assert.AreNotSame("NEW", sentOrder.Status, "Status not updated to non NEW");

            nmsClient.Stop();
            Assert.IsFalse(nmsClient.Connected(), "Failed to disconnect");
        }
        public void TestSendOrderIntegration()
        {
            var nmsClient = new NmsClientApp("TestClient");

            nmsClient.Configure(BrokerUrl, FerCommandQueue);
            nmsClient.Start();

            WaitFor(Connected, nmsClient, 10000);
            Assert.IsTrue(nmsClient.Connected(), "Failed to connect");

            var order = CreateLimitOrder();

            // Since this is an integration test, change platform to 'TEST'
            order.platform = "TEST";
            order.strategy = "TEST-EQUITY-STRATEGY";

            Console.WriteLine("Created order " + order.CacheKey);
            var messageId = nmsClient.SendOrder(order);

            Assert.IsNotNull(messageId, "Failed to send order");
            Console.WriteLine("Sent message:" + messageId);

            WaitFor(Response, nmsClient, 3000);
            Assert.GreaterOrEqual(nmsClient.OrderCacheCount, 1, "Failed to receive response");
            Thread.Sleep(1000);
            var response = nmsClient.GetResponseFor(messageId);

            Assert.IsNotNull(response, "Did not receive response for order " + messageId);

            Assert.IsFalse(response.ContainsKey("ERROR_1"), "Error with order:" + GetValueForKey("ERROR_1", response));
            nmsClient.Stop();
            Assert.IsFalse(nmsClient.Connected(), "Failed to disconnect");
        }
 public OrderPublisherAddin()
 {
     nmsClient = NmsClientFactory.GetClientFor(Configuration.BrokerUrl);
     if (!nmsClient.Connected())
     {
         // Sleep to give the connection time to startup
         Thread.Sleep(500);
     }
 }
Exemple #4
0
        public OrderPublisherAddin(AppConfiguration config)
        {
            _config = config;

            _nmsClient = NmsClientFactory.GetClientFor(_config.BrokerUrl);
            if (!_nmsClient.Connected())
            {
                // Sleep to give the connection time to startup
                Thread.Sleep(500);
            }
        }
Exemple #5
0
        public void TestStartStop()
        {
            var nmsClient = new NmsClientApp("TestClient");

            nmsClient.Configure(BrokerUrl, FerCommandQueue);
            nmsClient.Start();

            WaitFor(Connected, nmsClient, 10000);
            Assert.IsTrue(nmsClient.Connected(), "Failed to connect");

            nmsClient.Stop();
            Assert.IsFalse(nmsClient.Connected(), "Failed to disconnect");
        }
Exemple #6
0
        /// <summary>
        /// Startup the RTD server to listen to the Broker.
        /// </summary>
        /// <param name="callbackObject"></param>
        /// <returns></returns>
        int IRtdServer.ServerStart(IRTDUpdateEvent callbackObject)
        {
            try {
                xlRTDUpdateCallbackHandler = callbackObject;
                nmsClient = NmsClientFactory.Instance.getClientFor(Configuration.BrokerUrl);

                if (!nmsClient.Connected())
                {
                    // Sleep to give the connection time to startup
                    Thread.Sleep(500);
                }
                nmsClient.UpdatedOrder += ReceivedOrder;

                lastHeartbeat = 1;
                return(1);
            } catch (Exception e) {
                Console.WriteLine(e);
                return(-1);
            }
        }
Exemple #7
0
        public void TestSessionReconnect()
        {
            var nmsClient = new NmsClientApp("TestClient");

            nmsClient.Configure(BrokerUrl, FerCommandQueue);
            nmsClient.Start();

            WaitFor(Connected, nmsClient, 10000);
            Assert.IsTrue(nmsClient.Connected(), "Failed to connect");

            Console.WriteLine("Killing the broker NOW!");
            StopActiveMQBroker();
            StartActiveMQBroker();
            // sleep for a minute so we have time to kill the broker
            Thread.Sleep(1000);
            Console.WriteLine("Going to reconnect, the broker better be up!");

            WaitFor(Connected, nmsClient, 1000);
            Assert.IsTrue(nmsClient.Connected(), "Failed to connect");
        }
Exemple #8
0
//        static OrderSubscriberRtd() {
//            var configurationFileName = System.Reflection.Assembly.GetExecutingAssembly().Location + ".config";
//            log4net.Config.XmlConfigurator.Configure(new System.IO.FileInfo(configurationFileName));
//        }

        #region RTD
        /// <summary>
        /// Startup the RTD server to listen to the Broker.
        /// </summary>
        /// <param name="callbackObject"></param>
        /// <returns></returns>
        public int ServerStart(IRTDUpdateEvent callbackObject)
        {
            try {
                _xlRtdUpdateCallbackHandler = callbackObject;
                _nmsClient = NmsClientFactory.GetClientFor(_config.BrokerUrl);

                if (!_nmsClient.Connected())
                {
                    _nmsClient.Start();
                    // Sleep to give the connection time to startup
                    Thread.Sleep(500);
                }
                _nmsClient.UpdatedOrder += ReceivedOrder;

                _lastHeartbeat = 1;
                return(1);
            } catch (Exception e) {
                _log.Error(e);
                return(-1);
            }
        }