All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rdbc.test.NonExistingTableSpec.scala Maven / Gradle / Ivy

There is a newer version: 0.0.68
Show newest version
/*
 * Copyright 2016-2017 Krzysztof Pado
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.rdbc.test

import io.rdbc.api.exceptions.InvalidQueryException
import io.rdbc.sapi._
import io.rdbc.test.util.Subscribers

import scala.concurrent.Future

trait NonExistingTableSpec extends RdbcSpec {

  "Error should be returned when referencing a non-existent table when" - {
    stmtTest("Select", _.statement(sql"select * from nonexistent"), errPos = 15)
    stmtTest("Insert", _.statement(sql"insert into nonexistent values (1)"), errPos = 13)
    stmtTest("Returning insert",
      _.statement(sql"insert into nonexistent values (1)", StatementOptions.ReturnGenKeys),
      errPos = 13
    )
    stmtTest("Delete", _.statement(sql"delete from nonexistent"), errPos = 13)
    stmtTest("Update", _.statement(sql"update nonexistent set x = 1"), errPos = 8)
    stmtTest("DDL", _.statement(sql"drop table nonexistent"), errPos = 12)
  }

  private def stmtTest(stmtType: String, stmt: Connection => ExecutableStatement, errPos: Int): Unit = {
    s"executing a $stmtType for" - {
      executedFor("nothing", _.execute())
      executedFor("set", _.executeForSet())
      executedFor("value", _.executeForValue(_.int(1)))
      executedFor("first row", _.executeForFirstRow())
      executedFor("optional value", _.executeForValueOpt(_.intOpt(1)))
      executedFor("generated key", _.executeForKey[String])
      executedFor("stream", _.executeForStream().flatMap { rs =>
        val subscriber = Subscribers.eager()
        rs.rows.subscribe(subscriber)
        subscriber.rows
      })

      def executedFor[A](executorName: String, executor: ExecutableStatement => Future[A]): Unit = {
        s"executed for $executorName" in { c =>
          assertInvalidQueryThrown(errPos) {
            executor(stmt(c))
          }
        }
      }
    }
  }


  private def assertInvalidQueryThrown(errPos: Int)(body: => Future[Any]): Unit = {
    val e = intercept[InvalidQueryException] {
      body.get
    }
    e.errorPosition.fold(alert("non-fatal: no error position reported")) {
      pos =>
        pos shouldBe errPos
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy