diff options
author | Sean Dague | 2008-09-10 20:33:13 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-10 20:33:13 +0000 |
commit | 121398732aeaec0061272a7b8f49de46d58cd73b (patch) | |
tree | 0a1a415a61064fe9673adfce5d7f8bf6c63b8e27 /OpenSim/Data/SQLite/Tests | |
parent | add a simple update attribute test for SOG & SQLite (diff) | |
download | opensim-SC_OLD-121398732aeaec0061272a7b8f49de46d58cd73b.zip opensim-SC_OLD-121398732aeaec0061272a7b8f49de46d58cd73b.tar.gz opensim-SC_OLD-121398732aeaec0061272a7b8f49de46d58cd73b.tar.bz2 opensim-SC_OLD-121398732aeaec0061272a7b8f49de46d58cd73b.tar.xz |
add basic sniff tests for SQLite Asset store. Initializes a db,
stores an asset, fetches that asset, make sure it has the name
we gave it. All simple stuff, but should catch the more egregious
breaks.
Diffstat (limited to 'OpenSim/Data/SQLite/Tests')
-rw-r--r-- | OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs new file mode 100644 index 0000000..f2a5037 --- /dev/null +++ b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs | |||
@@ -0,0 +1,91 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using NUnit.Framework; | ||
31 | using NUnit.Framework.SyntaxHelpers; | ||
32 | using OpenSim.Framework; | ||
33 | using OpenSim.Data.SQLite; | ||
34 | using OpenSim.Region.Environment.Scenes; | ||
35 | using OpenMetaverse; | ||
36 | |||
37 | namespace OpenSim.Data.SQLite.Tests | ||
38 | { | ||
39 | [TestFixture] | ||
40 | public class SQLiteAssetTest | ||
41 | { | ||
42 | public string file = "assetest.db"; | ||
43 | public string connect; | ||
44 | public SQLiteAssetData db; | ||
45 | public UUID uuid1; | ||
46 | public UUID uuid2; | ||
47 | public UUID uuid3; | ||
48 | |||
49 | |||
50 | [TestFixtureSetUp] | ||
51 | public void Init() | ||
52 | { | ||
53 | System.Console.WriteLine("SQLiteAssetTest"); | ||
54 | connect = "URI=file:" + file + ",version=3"; | ||
55 | db = new SQLiteAssetData(); | ||
56 | db.Initialise(connect); | ||
57 | uuid1 = UUID.Random(); | ||
58 | uuid2 = UUID.Random(); | ||
59 | uuid3 = UUID.Random(); | ||
60 | } | ||
61 | |||
62 | [TestFixtureTearDown] | ||
63 | public void Cleanup() | ||
64 | { | ||
65 | System.IO.File.Delete(file); | ||
66 | } | ||
67 | |||
68 | [Test] | ||
69 | public void T001_LoadEmpty() | ||
70 | { | ||
71 | Assert.That(db.ExistsAsset(uuid1), Is.False); | ||
72 | } | ||
73 | |||
74 | [Test] | ||
75 | public void T010_StoreSimpleAsset() | ||
76 | { | ||
77 | AssetBase a1 = new AssetBase(uuid1, "asset one"); | ||
78 | db.CreateAsset(a1); | ||
79 | |||
80 | AssetBase a2 = db.FetchAsset(uuid1); | ||
81 | Assert.That(a1.ID.ToString(), Text.Matches(a2.ID.ToString())); | ||
82 | Assert.That(a1.Name, Text.Matches(a2.Name)); | ||
83 | } | ||
84 | |||
85 | [Test] | ||
86 | public void T011_ExistsSimpleAsset() | ||
87 | { | ||
88 | Assert.That(db.ExistsAsset(uuid1), Is.True); | ||
89 | } | ||
90 | } | ||
91 | } \ No newline at end of file | ||