This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/ktwebservice/nunit/document_rename.cs

49 lines
1.2 KiB
C#

using NUnit.Framework;
using System;
using System.IO;
namespace MonoTests.KnowledgeTree
{
[TestFixture]
public class DocumentRenameTest : KTTest
{
private int _folderId;
private Document _doc1;
[SetUp]
public void SetUp()
{
this._folderId = 1;
this._doc1 = new Document(1, this._session, this._kt, this._verbose,false);
this._doc1.createFile(this._folderId);
}
[TearDown]
public void TearDown()
{
this._doc1.deleteFile();
}
[Test]
public void RenameTest()
{
kt_document_detail response = this._kt.rename_document_filename(this._session, this._doc1.docId, "test fname");
Assert.AreEqual(0, response.status_code);
Assert.AreEqual("test fname", response.filename);
response = this._kt.rename_document_title(this._session, this._doc1.docId, "test title");
Assert.AreEqual(0, response.status_code);
Assert.AreEqual("test title", response.title);
}
[Test]
public void RenameWithInvalidCharactersTest()
{
kt_document_detail response = this._kt.rename_document_filename(this._session, this._doc1.docId, "te<s'`me");
Assert.AreEqual(0, response.status_code);
Assert.AreEqual("te-s--me", response.filename);
}
}
}