Exemple #1
0
        public void TestIntance()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            Assert.AreEqual(nsql.ToSql(), sqlRaw, true);
        }
Exemple #2
0
        public void TestStatic()
        {
            var sqlRaw = "select * from test";
            var nsql   = NSQLQuery.Create(sqlRaw);

            Assert.AreEqual(nsql.ToSql(), sqlRaw, true);
        }
Exemple #3
0
        public void TestConditionWHereNull()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.Where("coluna1", Op.Null);
            var expected = "select * from test where coluna1 is null";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #4
0
        public void TestConditionWhereNumber()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var valor = 10;

            nsql.Where("coluna1", Op.IGUAL, valor);

            Assert.AreEqual(nsql.ToSql(), sqlRaw + " WHERE coluna1 = 10", true);
        }
Exemple #5
0
        public void TestConditionWhereIn()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.WhereIn("coluna1", "2,3,4");

            var expected = "select * from test WHERE coluna1 IN (2,3,4)";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #6
0
        public void TestConditionWhereLike()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.WhereLike("coluna1", "%teste%");

            var expected = "select * from test WHERE coluna1 LIKE '%teste%'";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #7
0
        public void TestConditionLimit()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.Limit(100);

            var expected = "select * from test LIMIT 100";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #8
0
        public void TestConditionWhereRaw()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.WhereRaw("COALESCE(coluna1) = 1");
            nsql.WhereRaw("( select * from teste2 t where t.coluna2 = 1 )", Cond.OR);

            var expected = "select * from test WHERE COALESCE(coluna1) = 1 AND ( select * from teste2 t where t.coluna2 = 1 )";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #9
0
        public void TestConditionHavingString()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var texto = "nome do cliente";

            nsql.Having("coluna1", Op.IGUAL, texto);
            nsql.Having("coluna2", Op.Diferente, texto);

            Assert.AreEqual(nsql.ToSql(), sqlRaw + " HAVING coluna1 = 'nome do cliente' AND coluna2 != 'nome do cliente'", true);
        }
Exemple #10
0
        public void TestConditionGroupBy()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.GroupBy("coluna1");
            nsql.GroupBy("coluna2");

            var expected = "select * from test GROUP BY coluna1,coluna2";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #11
0
        public void TestConditionOrdeBy()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.OrderBy("coluna1");
            nsql.OrderBy("coluna2", Order.DESC);

            var expected = "select * from test ORDER BY coluna1 ASC,coluna2 DESC";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #12
0
        public void TestConditionHavingNumber()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var numero = 10;

            nsql.Having("coluna1", Op.IGUAL, numero);
            nsql.Having("coluna2", Op.Diferente, numero);

            Assert.AreEqual(nsql.ToSql(), sqlRaw + " HAVING coluna1 = 10 AND coluna2 != 10", true);
        }
Exemple #13
0
        public void TestConditionParams()
        {
            var sqlRaw = "select * from test t1 join teste2 t2 on t1.id = t2.id and t2.parametro = :parametroTeste";
            var nsql   = new NSQLQuery(sqlRaw);

            var numero = 10;

            nsql.BindParam("parametroTeste", numero);

            var expected = "select * from test t1 join teste2 t2 on t1.id = t2.id and t2.parametro = 10";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #14
0
        public void TestConditionWhereFindInSetString()
        {
            // Query Principal
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.WhereFindInSet("coluna1", "1,2,3,4,5");


            var expected = "select * from test WHERE FIND_IN_SET(coluna1,'1,2,3,4,5')";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #15
0
        public void TestConditionWhereSubCondition()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            nsql.Where("coluna2", Op.IGUAL, "teste").Where(x =>
            {
                x.Where("coluna1", Op.IGUAL, "teste");
            });

            var expected = "select * from test WHERE coluna2 = 'teste' AND ( coluna1 = 'teste' )";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #16
0
        public void TestConditionWhereOr()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var numero = 10;

            nsql.Where("coluna1", Op.IGUAL, numero);
            nsql.WhereOr("coluna2", Op.Diferente, numero);


            var expected = sqlRaw + " WHERE coluna1 = 10 OR coluna2 != 10";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #17
0
        public void TestConditionWhereNotInArrayInt()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var valores = new List <Object>()
            {
                151, 65656
            };

            nsql.WhereNotIn("coluna1", valores);

            var expected = "select * from test WHERE coluna1 NOT IN (151,65656)";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #18
0
        public void TestConditionWhereInArrayString()
        {
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            var valores = new List <Object>()
            {
                "teste", "teste2"
            };

            nsql.WhereIn("coluna1", valores);

            var expected = "select * from test WHERE coluna1 IN ('teste','teste2')";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #19
0
        public void TestConditionWhereSubQuery()
        {
            // Query Principal
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            // SUb Query
            var nSubSql = new NSQLQuery("select * from teste2");

            nSubSql.Where("coluna1", Op.IGUAL, "TESTE");

            // Adiciona sub query
            nsql.Where(nSubSql);

            var expected = "select * from test WHERE ( select * from teste2 WHERE coluna1 = 'TESTE' )";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }
Exemple #20
0
        public void TestConditionWhereJoinHaving()
        {
            // Query Principal
            var sqlRaw = "select * from test";
            var nsql   = new NSQLQuery(sqlRaw);

            // Query 2
            var nSubSql = new NSQLQuery();

            nSubSql.Having("coluna1", Op.IGUAL, "TESTE");

            // Adiciona sub query
            nsql.JoinHaving(nSubSql);

            var expected = "select * from test HAVING coluna1 = 'TESTE'";

            Assert.AreEqual(expected, nsql.ToSql(), true);
        }