2018-05-28 03:32:21 +02:00
|
|
|
|
using System;
|
2018-05-15 01:34:37 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-02-10 01:26:32 +01:00
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
2018-05-15 01:34:37 +02:00
|
|
|
|
using Sieve.Exceptions;
|
2018-02-10 01:26:32 +01:00
|
|
|
|
using Sieve.Models;
|
|
|
|
|
using Sieve.Services;
|
|
|
|
|
using SieveUnitTests.Entities;
|
|
|
|
|
using SieveUnitTests.Services;
|
|
|
|
|
|
|
|
|
|
namespace SieveUnitTests
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class General
|
|
|
|
|
{
|
2018-05-15 01:34:37 +02:00
|
|
|
|
private readonly SieveProcessor _processor;
|
|
|
|
|
private readonly IQueryable<Post> _posts;
|
2018-06-15 10:16:36 +02:00
|
|
|
|
private readonly IQueryable<Comment> _comments;
|
2018-02-10 01:26:32 +01:00
|
|
|
|
|
|
|
|
|
public General()
|
|
|
|
|
{
|
|
|
|
|
_processor = new SieveProcessor(new SieveOptionsAccessor(),
|
|
|
|
|
new SieveCustomSortMethods(),
|
|
|
|
|
new SieveCustomFilterMethods());
|
|
|
|
|
|
|
|
|
|
_posts = new List<Post>
|
|
|
|
|
{
|
|
|
|
|
new Post() {
|
|
|
|
|
Id = 0,
|
|
|
|
|
Title = "A",
|
2018-04-08 05:46:16 +02:00
|
|
|
|
LikeCount = 100,
|
2018-05-28 03:32:21 +02:00
|
|
|
|
IsDraft = true,
|
|
|
|
|
CategoryId = null,
|
2018-02-10 01:26:32 +01:00
|
|
|
|
},
|
|
|
|
|
new Post() {
|
|
|
|
|
Id = 1,
|
|
|
|
|
Title = "B",
|
2018-04-08 05:46:16 +02:00
|
|
|
|
LikeCount = 50,
|
2018-05-28 03:32:21 +02:00
|
|
|
|
IsDraft = false,
|
|
|
|
|
CategoryId = 1,
|
2018-02-10 01:26:32 +01:00
|
|
|
|
},
|
|
|
|
|
new Post() {
|
|
|
|
|
Id = 2,
|
|
|
|
|
Title = "C",
|
2018-05-28 03:32:21 +02:00
|
|
|
|
LikeCount = 0,
|
|
|
|
|
CategoryId = 1,
|
2018-02-10 01:26:32 +01:00
|
|
|
|
},
|
2018-04-20 10:46:04 +02:00
|
|
|
|
new Post() {
|
|
|
|
|
Id = 3,
|
2018-05-15 01:34:37 +02:00
|
|
|
|
Title = "D",
|
2018-04-20 10:46:04 +02:00
|
|
|
|
LikeCount = 3,
|
2018-05-28 03:32:21 +02:00
|
|
|
|
IsDraft = true,
|
|
|
|
|
CategoryId = 2,
|
2018-04-20 10:46:04 +02:00
|
|
|
|
},
|
2018-02-10 01:26:32 +01:00
|
|
|
|
}.AsQueryable();
|
2018-06-15 10:16:36 +02:00
|
|
|
|
|
|
|
|
|
_comments = new List<Comment>
|
|
|
|
|
{
|
|
|
|
|
new Comment() {
|
|
|
|
|
Id = 0,
|
|
|
|
|
DateCreated = DateTimeOffset.UtcNow.AddDays(-20),
|
|
|
|
|
Text = "This is an old comment."
|
|
|
|
|
},
|
|
|
|
|
new Comment() {
|
|
|
|
|
Id = 1,
|
|
|
|
|
DateCreated = DateTimeOffset.UtcNow.AddDays(-1),
|
|
|
|
|
Text = "This is a fairly new comment."
|
|
|
|
|
},
|
|
|
|
|
new Comment() {
|
|
|
|
|
Id = 2,
|
|
|
|
|
DateCreated = DateTimeOffset.UtcNow,
|
2018-11-16 09:08:25 +01:00
|
|
|
|
Text = "This is a brand new comment. ()"
|
2018-06-15 10:16:36 +02:00
|
|
|
|
},
|
|
|
|
|
}.AsQueryable();
|
2018-02-10 01:26:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void ContainsCanBeCaseInsensitive()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Title@=*a"
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-02-10 01:26:32 +01:00
|
|
|
|
|
|
|
|
|
Assert.AreEqual(result.First().Id, 0);
|
|
|
|
|
Assert.IsTrue(result.Count() == 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void ContainsIsCaseSensitive()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Title@=a",
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-02-10 01:26:32 +01:00
|
|
|
|
|
|
|
|
|
Assert.IsTrue(result.Count() == 0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 05:46:16 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CanFilterBools()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "IsDraft==false"
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-05-15 01:34:37 +02:00
|
|
|
|
|
2018-04-08 05:46:16 +02:00
|
|
|
|
Assert.IsTrue(result.Count() == 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CanSortBools()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Sorts = "-IsDraft"
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-04-08 05:46:16 +02:00
|
|
|
|
|
|
|
|
|
Assert.AreEqual(result.First().Id, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 03:32:21 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CanFilterNullableInts()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "CategoryId==1"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(result.Count() == 2);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-10 01:26:32 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void EqualsDoesntFailWithNonStringTypes()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "LikeCount==50",
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-16 09:08:25 +01:00
|
|
|
|
Console.WriteLine(model.GetFiltersParsed()[0].Values);
|
2018-07-06 03:12:45 +02:00
|
|
|
|
Console.WriteLine(model.GetFiltersParsed()[0].Operator);
|
|
|
|
|
Console.WriteLine(model.GetFiltersParsed()[0].OperatorParsed);
|
2018-02-10 01:26:32 +01:00
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-02-10 01:26:32 +01:00
|
|
|
|
|
|
|
|
|
Assert.AreEqual(result.First().Id, 1);
|
|
|
|
|
Assert.IsTrue(result.Count() == 1);
|
|
|
|
|
}
|
2018-02-11 04:35:33 +01:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomFiltersWork()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Isnew",
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-02-11 04:35:33 +01:00
|
|
|
|
|
|
|
|
|
Assert.IsFalse(result.Any(p => p.Id == 0));
|
2018-04-20 10:46:04 +02:00
|
|
|
|
Assert.IsTrue(result.Count() == 3);
|
2018-02-11 04:35:33 +01:00
|
|
|
|
}
|
2018-02-13 23:43:33 +01:00
|
|
|
|
|
2018-11-30 00:08:39 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomFiltersWithOperatorsWork()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "HasInTitle==A",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(result.Any(p => p.Id == 0));
|
|
|
|
|
Assert.IsTrue(result.Count() == 1);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-14 10:50:19 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomFiltersMixedWithUsualWork1()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Isnew,CategoryId==2",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(result.Any(p => p.Id == 3));
|
|
|
|
|
Assert.IsTrue(result.Count() == 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomFiltersMixedWithUsualWork2()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "CategoryId==2,Isnew",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(result.Any(p => p.Id == 3));
|
|
|
|
|
Assert.IsTrue(result.Count() == 1);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-15 10:16:36 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomFiltersOnDifferentSourcesCanShareName()
|
|
|
|
|
{
|
|
|
|
|
var postModel = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "CategoryId==2,Isnew",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var postResult = _processor.Apply(postModel, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(postResult.Any(p => p.Id == 3));
|
|
|
|
|
Assert.AreEqual(1, postResult.Count());
|
|
|
|
|
|
|
|
|
|
var commentModel = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Isnew",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var commentResult = _processor.Apply(commentModel, _comments);
|
|
|
|
|
|
|
|
|
|
Assert.IsTrue(commentResult.Any(c => c.Id == 2));
|
|
|
|
|
Assert.AreEqual(2, commentResult.Count());
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-04 05:06:37 +02:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void CustomSortsWork()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Sorts = "Popularity",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
|
|
|
|
|
Assert.IsFalse(result.First().Id == 0);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-13 23:43:33 +01:00
|
|
|
|
[TestMethod]
|
|
|
|
|
public void MethodNotFoundExceptionWork()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "does not exist",
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
Assert.ThrowsException<SieveMethodNotFoundException>(() => _processor.Apply(model, _posts));
|
2018-02-13 23:43:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void IncompatibleMethodExceptionsWork()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "TestComment",
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
Assert.ThrowsException<SieveIncompatibleMethodException>(() => _processor.Apply(model, _posts));
|
2018-02-13 23:43:33 +01:00
|
|
|
|
}
|
2018-04-20 10:46:04 +02:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
2018-11-16 09:08:25 +01:00
|
|
|
|
public void OrNameFilteringWorks()
|
2018-04-20 10:46:04 +02:00
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "(Title|LikeCount)==3",
|
|
|
|
|
};
|
|
|
|
|
|
2018-04-20 11:27:04 +02:00
|
|
|
|
var result = _processor.Apply(model, _posts);
|
2018-05-15 01:34:37 +02:00
|
|
|
|
var entry = result.FirstOrDefault();
|
|
|
|
|
var resultCount = result.Count();
|
2018-04-20 10:46:04 +02:00
|
|
|
|
|
2018-05-15 01:34:37 +02:00
|
|
|
|
Assert.IsNotNull(entry);
|
|
|
|
|
Assert.AreEqual(1, resultCount);
|
|
|
|
|
Assert.AreEqual(3, entry.Id);
|
2018-04-20 10:46:04 +02:00
|
|
|
|
}
|
2018-11-16 09:08:25 +01:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void OrValueFilteringWorks()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Title==C|D",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _posts);
|
|
|
|
|
Assert.AreEqual(2, result.Count());
|
|
|
|
|
Assert.IsTrue(result.Any(p => p.Id == 2));
|
|
|
|
|
Assert.IsTrue(result.Any(p => p.Id == 3));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void OrValueFilteringWorks2()
|
|
|
|
|
{
|
|
|
|
|
var model = new SieveModel()
|
|
|
|
|
{
|
|
|
|
|
Filters = "Text@=(|)",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var result = _processor.Apply(model, _comments);
|
|
|
|
|
Assert.AreEqual(1, result.Count());
|
|
|
|
|
Assert.AreEqual(2, result.FirstOrDefault().Id);
|
|
|
|
|
}
|
2018-02-10 01:26:32 +01:00
|
|
|
|
}
|
2018-05-28 03:32:21 +02:00
|
|
|
|
}
|