-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathByteArrayTest.cs
105 lines (88 loc) · 3.21 KB
/
ByteArrayTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SQLite;
#if NETFX_CORE
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
using SetUp = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestInitializeAttribute;
using TestFixture = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestClassAttribute;
using Test = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestMethodAttribute;
#else
using NUnit.Framework;
#endif
namespace SQLite.Tests
{
[TestFixture]
public class ByteArrayTest
{
public class ByteArrayClass
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public byte[] bytes { get; set; }
public void AssertEquals(ByteArrayClass other)
{
Assert.AreEqual(other.ID, ID);
if (other.bytes == null || bytes == null) {
Assert.IsNull (other.bytes);
Assert.IsNull (bytes);
}
else {
Assert.AreEqual(other.bytes.Length, bytes.Length);
for (var i = 0; i < bytes.Length; i++) {
Assert.AreEqual(other.bytes[i], bytes[i]);
}
}
}
}
[Test]
[Description("Create objects with various byte arrays and check they can be stored and retrieved correctly")]
public void ByteArrays()
{
//Byte Arrays for comparisson
ByteArrayClass[] byteArrays = new ByteArrayClass[] {
new ByteArrayClass() { bytes = new byte[] { 1, 2, 3, 4, 250, 252, 253, 254, 255 } }, //Range check
new ByteArrayClass() { bytes = new byte[] { 0 } }, //null bytes need to be handled correctly
new ByteArrayClass() { bytes = new byte[] { 0, 0 } },
new ByteArrayClass() { bytes = new byte[] { 0, 1, 0 } },
new ByteArrayClass() { bytes = new byte[] { 1, 0, 1 } },
new ByteArrayClass() { bytes = new byte[] { } }, //Empty byte array should stay empty (and not become null)
new ByteArrayClass() { bytes = null } //Null should be supported
};
SQLiteConnection database = new SQLiteConnection(TestPath.GetTempFileName());
database.CreateTable<ByteArrayClass>();
//Insert all of the ByteArrayClass
foreach (ByteArrayClass b in byteArrays)
database.Insert(b);
//Get them back out
ByteArrayClass[] fetchedByteArrays = database.Table<ByteArrayClass>().OrderBy(x => x.ID).ToArray();
Assert.AreEqual(fetchedByteArrays.Length, byteArrays.Length);
//Check they are the same
for (int i = 0; i < byteArrays.Length; i++)
{
byteArrays[i].AssertEquals(fetchedByteArrays[i]);
}
}
[Test]
[Description("Create A large byte array and check it can be stored and retrieved correctly")]
public void LargeByteArray()
{
const int byteArraySize = 1024 * 1024;
byte[] bytes = new byte[byteArraySize];
for (int i = 0; i < byteArraySize; i++)
bytes[i] = (byte)(i % 256);
ByteArrayClass byteArray = new ByteArrayClass() { bytes = bytes };
SQLiteConnection database = new SQLiteConnection(TestPath.GetTempFileName());
database.CreateTable<ByteArrayClass>();
//Insert the ByteArrayClass
database.Insert(byteArray);
//Get it back out
ByteArrayClass[] fetchedByteArrays = database.Table<ByteArrayClass>().ToArray();
Assert.AreEqual(fetchedByteArrays.Length, 1);
//Check they are the same
byteArray.AssertEquals(fetchedByteArrays[0]);
}
}
}