alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Lift Framework example source code file (EnumFieldSpec.scala)

This example Lift Framework source code file (EnumFieldSpec.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Lift Framework tags/keywords

empty, enumfield, enumfield, enumrec, enumrec, fri, jsonobj, jsonobj, jsonobjectfield, jsonobjectmeta, specification, value, weekday, weekday

The Lift Framework EnumFieldSpec.scala source code

/*
 * Copyright 2010 WorldWide Conferencing, LLC
 *
 * 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 net.liftweb
package mongodb
package record
package field

import org.bson.types.ObjectId
import org.specs.Specification

import net.liftweb.common._
import net.liftweb.json.ext.EnumSerializer
import net.liftweb.record.field.{EnumField, OptionalEnumField}
import net.liftweb.util.Helpers._

import com.mongodb._

package enumfieldspecs {
  object WeekDay extends Enumeration {
    type WeekDay = Value
    val Mon, Tue, Wed, Thu, Fri, Sat, Sun = Value
  }

  case class JsonObj(dow: WeekDay.WeekDay) extends JsonObject[JsonObj] {
    def meta = JsonObj
  }
  object JsonObj extends JsonObjectMeta[JsonObj]

  class EnumRec extends MongoRecord[EnumRec] with MongoId[EnumRec] {
    def meta = EnumRec

    object dow extends EnumField(this, WeekDay)
    object dowOptional extends OptionalEnumField(this, WeekDay)
    object jsonobj extends JsonObjectField[EnumRec, JsonObj](this, JsonObj) {
      def defaultValue = JsonObj(WeekDay.Mon)
    }

    override def equals(other: Any): Boolean = other match {
      case that: EnumRec =>
        this.id == that.id &&
        this.dow.value == that.dow.value &&
        this.dowOptional.valueBox == that.dowOptional.valueBox &&
        this.jsonobj.value == that.jsonobj.value
      case _ => false
    }
  }
  object EnumRec extends EnumRec with MongoMetaRecord[EnumRec] {
    override def collectionName = "enumrecs"
    override def formats = super.formats + new EnumSerializer(WeekDay)
  }
}


/**
 * Systems under specification for EnumField.
 */
object EnumFieldSpec extends Specification("EnumField Specification") with MongoTestKit {

  import enumfieldspecs._

  "EnumField" should {

    "work with default values" in {
      checkMongoIsRunning

      val er = EnumRec.createRecord.save

      val erFromDb = EnumRec.find(er.id)
      erFromDb must notBeEmpty
      erFromDb foreach { er2 =>
        er2 mustEqual er
        er2.dow.value mustEqual WeekDay.Mon
        er2.dowOptional.valueBox mustEqual Empty
        er2.jsonobj.value mustEqual JsonObj(WeekDay.Mon)
      }
    }

    "work with set values" in {
      checkMongoIsRunning

      val er = EnumRec.createRecord
        .dow(WeekDay.Tue)
        .jsonobj(JsonObj(WeekDay.Sun))
        .save

      val erFromDb = EnumRec.find(er.id)
      erFromDb must notBeEmpty
      erFromDb foreach { er2 =>
        er2 mustEqual er
        er2.dow.value mustEqual WeekDay.Tue
        er2.jsonobj.value mustEqual JsonObj(WeekDay.Sun)
      }
    }

    "work with Empty optional values" in {
      checkMongoIsRunning

      val er = EnumRec.createRecord
      er.dowOptional.setBox(Empty)
      er.save

      val erFromDb = EnumRec.find(er.id)
      erFromDb must notBeEmpty
      erFromDb foreach { er2 =>
        er2 mustEqual er
        er2.dowOptional.valueBox mustEqual Empty
      }
    }

    "work with Full optional values" in {
      checkMongoIsRunning

      val er = EnumRec.createRecord
      er.dowOptional.setBox(Full(WeekDay.Sat))
      er.save

      val erFromDb = EnumRec.find(er.id)
      erFromDb must notBeEmpty
      erFromDb foreach { er2 =>
        er2 mustEqual er
        er2.dowOptional.valueBox mustEqual Full(WeekDay.Sat)
      }
    }
  }
}

Other Lift Framework examples (source code examples)

Here is a short list of links related to this Lift Framework EnumFieldSpec.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.