Exemple #1
0
        public void FlattenComplexTypes()
        {
            IODataFeedClient target     = new ConnectedODataFeedClient();
            string           requestUri = "http://odata.netflix.com/v2/Catalog/Titles?$top=1&$select=BoxArt";
            AutoResetEvent   resetEvent = new AutoResetEvent(false);

            target.FeedDownloaded += (sender, args) =>
            {
                try
                {
                    Assert.IsNull(args.Error, "No error expected");
                    Assert.IsFalse(args.IsCancelled, "No error expected");
                    Assert.IsNull(args.TotalCount, "No count expected");

                    Assert.AreEqual(args.Entries.Count(), 1, "Only one entity expected");
                    ODataEntity entity = args.Entries.Single();
                    foreach (var propertyName in new[] { "BoxArt.SmallUrl", "BoxArt.MediumUrl", "BoxArt.LargeUrl", "BoxArt.HighDefinitionUrl" })
                    {
                        Assert.IsTrue(entity.Properties.ContainsKey(propertyName), "{0} property not flattened", propertyName);
                    }
                }
                finally
                {
                    resetEvent.Set();
                }
            };

            IAsyncResult expected = target.BeginDownload(requestUri);

            resetEvent.WaitOne();
        }
Exemple #2
0
        public void CancelDownloadTest()
        {
            IODataFeedClient target     = new ConnectedODataFeedClient();
            string           requestUri = "http://odata.netflix.com/v2/Catalog/Titles?$top=100";
            AutoResetEvent   resetEvent = new AutoResetEvent(false);

            target.FeedDownloaded += (sender, args) =>
            {
                try
                {
                    Assert.IsTrue(args.IsCancelled, "Expected Request to be cancelled");
                    Assert.IsNull(args.Error, "No error expected");
                    Assert.IsNull(args.TotalCount, "No count expected");
                }
                finally
                {
                    resetEvent.Set();
                }
            };

            IAsyncResult expected = target.BeginDownload(requestUri);

            target.CancelRequest();
            resetEvent.WaitOne();
        }
Exemple #3
0
        public void TimeoutOnDownloadTests()
        {
            IODataFeedClient target = new ConnectedODataFeedClient();

            target.Timeout = 0.5 * 1000;
            string                requestUri = "http://odata.netflix.com/v2/Catalog/Titles?$top=400&$expand=Genres";
            AutoResetEvent        resetEvent = new AutoResetEvent(false);
            ODataFeedDownloadArgs eventArgs  = null;

            target.FeedDownloaded += (sender, args) =>
            {
                eventArgs = args;
                Assert.IsTrue(args.IsTimedOut, "Timeout expected");
                Assert.IsNull(args.Error, "No error expected");
                Assert.IsNull(args.TotalCount, "No count expected");
            };

            IAsyncResult expected = target.BeginDownload(requestUri);

            expected.AsyncWaitHandle.WaitOne();
        }
Exemple #4
0
        public void DownloadTest()
        {
            IODataFeedClient      target     = new ConnectedODataFeedClient();
            string                requestUri = "http://odata.netflix.com/v2/Catalog/Titles?$top=1";
            AutoResetEvent        resetEvent = new AutoResetEvent(false);
            ODataFeedDownloadArgs eventArgs  = null;

            target.FeedDownloaded += (sender, args) =>
            {
                eventArgs = args;
                Assert.IsNull(args.Error, "No error expected");
                Assert.IsFalse(args.IsCancelled, "No error expected");
                Assert.IsNull(args.TotalCount, "No count expected");

                Assert.AreEqual(args.Entries.Count(), 1, "Only one entity expected");
            };

            IAsyncResult expected = target.BeginDownload(requestUri);

            expected.AsyncWaitHandle.WaitOne();
        }
Exemple #5
0
        public void DownloadSingleEntry_ExpectFailure_Test()
        {
            IODataFeedClient target     = new ConnectedODataFeedClient();
            string           requestUri = "http://odata.netflix.com/v2/Catalog/Titles('1EGty')?$select=BoxArt,Genres/*&$expand=Genres";
            AutoResetEvent   resetEvent = new AutoResetEvent(false);

            target.FeedDownloaded += (sender, args) =>
            {
                try
                {
                    Assert.IsNotNull(args.Error, "error expected");
                    Assert.IsInstanceOfType(args.Error, typeof(ODataException), "ODataException expected");
                    Assert.IsNull(args.Entries, "no entities expected");
                }
                finally
                {
                    resetEvent.Set();
                }
            };

            IAsyncResult expected = target.BeginDownload(requestUri);

            resetEvent.WaitOne();
        }