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

Lift Framework example source code file (XmlParserSpec.scala)

This example Lift Framework source code file (XmlParserSpec.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

cdata, char, control, hello, hello, int, io, pcdata, specification, unparsed, unparsed, xml, xml, yak, yak

The Lift Framework XmlParserSpec.scala source code

/*
 * Copyright 2007-2011 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 util

import java.io.ByteArrayInputStream

import xml.{Text, Unparsed}

import org.specs.Specification


/**
 * Systems under specification for XmlParser, specifically PCDataMarkupParser.
 */
object XmlParserSpec extends Specification("Xml Parser Specification") {

  "Multiple attributes with same name, but different namespace" should {
    "parse correctly" >> {
      val actual =
      <lift:surround with="base" at="body">
        <lift:Menu.builder  li_path:class="p" li_item:class="i"/>
      </lift:surround>

      val expected =
      <lift:surround with="base" at="body">
        <lift:Menu.builder  li_path:class="p" li_item:class="i"/>
      </lift:surround>

      val bis = new ByteArrayInputStream(actual.toString.getBytes("UTF-8"))
      val parsed = PCDataXmlParser(bis).open_!
      parsed must ==/(expected)
    }

  }

  "XML can contain PCData" in {
    val data = <foo>{
        PCData("Hello Yak")
      }</foo>

    val str = AltXML.toXML(data, false, true)

    str.indexOf("<![CDATA[") must be > -1
  }

  "XML can contain Unparsed" in {
    val data = <foo>{
        Unparsed("Hello & goodbye > <yak Yak")
      }</foo>

    val str = AltXML.toXML(data, false, true)

    str.indexOf("Hello & goodbye > <yak Yak") must be > -1
  }

  "XML cannot contain Control characters" in {
     val data = 
     <foo>
      {
        '\u0085'
      }{
        Text("hello \u0000 \u0085 \u0080")
      }{
        "hello \u0000 \u0003 \u0085 \u0080"
      }{
        '\u0003'
      }
    </foo>

    val str = AltXML.toXML(data, false, true)

    def cntIllegal(in: Char): Int = in match {
      case '\u0085' => 1
      case c if (c >= '\u007f' && c <= '\u0095') => 1
      case '\n' => 0
      case '\r' => 0
      case '\t' => 0
      case c if c < ' ' => 1
      case _ => 0
    }

    str.toList.foldLeft(0)((a, b) => a + cntIllegal(b)) must_== 0
  }

}

Other Lift Framework examples (source code examples)

Here is a short list of links related to this Lift Framework XmlParserSpec.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.