aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/Tests
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-06-05 17:03:44 +0000
committerJustin Clarke Casey2009-06-05 17:03:44 +0000
commit87097f24848e9763ca7e3513b681a7b95fe5183f (patch)
tree75841e585cebfa670caa488496a1dfe28057024e /OpenSim/Framework/Servers/Tests
parent* Fix problem where known missing assets would stop save oar ever completing (diff)
downloadopensim-SC_OLD-87097f24848e9763ca7e3513b681a7b95fe5183f.zip
opensim-SC_OLD-87097f24848e9763ca7e3513b681a7b95fe5183f.tar.gz
opensim-SC_OLD-87097f24848e9763ca7e3513b681a7b95fe5183f.tar.bz2
opensim-SC_OLD-87097f24848e9763ca7e3513b681a7b95fe5183f.tar.xz
* Fix unit tests so that they correctly handle 404 missing asset response
* I didn't think there were tests in this area - my bad
Diffstat (limited to 'OpenSim/Framework/Servers/Tests')
-rw-r--r--OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs6
-rw-r--r--OpenSim/Framework/Servers/Tests/GetAssetStreamHandlerTests.cs7
2 files changed, 8 insertions, 5 deletions
diff --git a/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs b/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
index cf19468..fed4707 100644
--- a/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
+++ b/OpenSim/Framework/Servers/Tests/CachedGetAssetStreamHandlerTests.cs
@@ -94,9 +94,11 @@ namespace OpenSim.Framework.Servers.Tests
94 public void TestHandleFetchMissingAsset() 94 public void TestHandleFetchMissingAsset()
95 { 95 {
96 IAssetCache assetCache = new TestAssetCache(); 96 IAssetCache assetCache = new TestAssetCache();
97 CachedGetAssetStreamHandler handler = new CachedGetAssetStreamHandler(assetCache); 97 CachedGetAssetStreamHandler handler;
98 OSHttpResponse response;
99 AssetBase asset = CreateTestEnvironment(out handler, out response);
98 100
99 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler); 101 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler, response);
100 } 102 }
101 103
102 [Test] 104 [Test]
diff --git a/OpenSim/Framework/Servers/Tests/GetAssetStreamHandlerTests.cs b/OpenSim/Framework/Servers/Tests/GetAssetStreamHandlerTests.cs
index 7a05f93..6a4918d 100644
--- a/OpenSim/Framework/Servers/Tests/GetAssetStreamHandlerTests.cs
+++ b/OpenSim/Framework/Servers/Tests/GetAssetStreamHandlerTests.cs
@@ -94,10 +94,11 @@ namespace OpenSim.Framework.Servers.Tests
94 [Test] 94 [Test]
95 public void TestHandleFetchMissingAsset() 95 public void TestHandleFetchMissingAsset()
96 { 96 {
97 IAssetDataPlugin assetDataPlugin = new TestAssetDataPlugin(); 97 GetAssetStreamHandler handler;
98 GetAssetStreamHandler handler = new GetAssetStreamHandler(assetDataPlugin); 98 OSHttpResponse response;
99 AssetBase asset = CreateTestEnvironment(out handler, out response);
99 100
100 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler); 101 GetAssetStreamHandlerTestHelpers.BaseFetchMissingAsset(handler, response);
101 } 102 }
102 103
103 [Test] 104 [Test]