Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add Tuple tests
  • Loading branch information
vmuriart committed Feb 8, 2017
commit 595a63d6354811ab906f185801611fbe842bc385
1 change: 1 addition & 0 deletions src/embed_tests/Python.EmbeddingTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
<Compile Include="pylong.cs" />
<Compile Include="pyobject.cs" />
<Compile Include="pythonexception.cs" />
<Compile Include="pytuple.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\runtime\Python.Runtime.csproj">
Expand Down
94 changes: 94 additions & 0 deletions src/embed_tests/pytuple.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
using NUnit.Framework;
using Python.Runtime;

namespace Python.EmbeddingTest
{
public class PyTupleTest
{
[Test]
public void TestPyTupleEmpty()
{
using (Py.GIL())
{
var t = new PyTuple();
Assert.AreEqual(0, t.Length());
}
}

[Test]
[ExpectedException("Python.Runtime.PythonException")]
public void TestPyTupleInvalidAppend()
{
using (Py.GIL())
{
PyObject s = new PyString("foo");
var t = new PyTuple();
t.Concat(s);
}
}

[Test]
public void TestPyTupleValidAppend()
{
using (Py.GIL())
{
var t0 = new PyTuple();
var t = new PyTuple();
t.Concat(t0);
Assert.IsNotNull(t);
Assert.IsInstanceOf(typeof(PyTuple), t);
}
}

[Test]
public void TestPyTupleIsTupleType()
{
using (Py.GIL())
{
var s = new PyString("foo");
var t = new PyTuple();
Assert.IsTrue(PyTuple.IsTupleType(t));
Assert.IsFalse(PyTuple.IsTupleType(s));
}
}

[Test]
public void TestPyTupleStringConvert()
{
using (Py.GIL())
{
PyObject s = new PyString("foo");
PyTuple t = PyTuple.AsTuple(s);
Assert.IsNotNull(t);
Assert.IsInstanceOf(typeof(PyTuple), t);
Assert.AreEqual("f", t[0].ToString());
Assert.AreEqual("o", t[1].ToString());
Assert.AreEqual("o", t[2].ToString());
}
}

[Test]
public void TestPyTupleValidConvert()
{
using (Py.GIL())
{
var l = new PyList();
PyTuple t = PyTuple.AsTuple(l);
Assert.IsNotNull(t);
Assert.IsInstanceOf(typeof(PyTuple), t);
}
}

[Test]
public void TestNewPyTupleFromPyTuple()
{
using (Py.GIL())
{
var t0 = new PyTuple();
var t = new PyTuple(t0);
Assert.IsNotNull(t);
Assert.IsInstanceOf(typeof(PyTuple), t);
}
}
}
}