Skip to content

Instantly share code, notes, and snippets.

View codedmart's full-sized avatar

Brandon Martin codedmart

View GitHub Profile
private def recvAll(accum: Int): Array[Byte] = {
@tailrec def recvAllBuf(response: Array[Byte], acc: Int): Array[Byte] = {
val character = in.read()
val responseArray = response :+ character.toByte
acc match {
case 0 => responseArray
case _ => recvAllBuf(responseArray, acc - 1)
}
}
overriding value connection in trait Rql of type com.scalaRethinkdb.Connection;
value connection has incompatible type
val connection = connect _
trait Rql {
// val DEFAULT_HOST = "localhost"
// val DEFAULT_PORT_DRIVER = 28015
def connect: Connection
def get(db:String, table: String): String = {
// Table example
val query = Json.array(
jNumber(1), Json.array(
jNumber(15), Json.array(
r.db('lumi').table('users').coerceTo('array').filter(function(row){
return row('username').match('[^a-zA-Z0-9_]')
}).update({
username: r.row('username').coerceTo('string').replace(/[^a-zA-Z0-9_]/gi, '')
})
/** @jsx React.DOM */
var React = require('react');
module.exports = React.createClass({
getInitialState: function() {
return {
sameAsBilling: true
}
},
[
{
"array": [
{
"id": "0"
},
{
"id": "1"
}
] ,
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fcontext-stack=25 #-}
context "client correctly handles error status codes" $ do
let test :: (WrappedApi, String) -> Spec
test (WrappedApi api, desc) =
it desc $
withWaiDaemon (return (serve api (left (500, "error message")))) $
\ host -> do
let getResponse :: EitherT ServantError IO ()
getResponse = client api host
Left FailureResponse{..} <- liftIO $ runEitherT getResponse
runIO $ responseStatus `shouldBe` (Status 500 "error message")
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fcontext-stack=25 #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fcontext-stack=25 #-}