PageRenderTime 20ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/scalate-wikitext/src/test/scala/org/fusesource/scalate/wikitext/AbstractConfluenceTest.scala

http://github.com/scalate/scalate
Scala | 44 lines | 18 code | 6 blank | 20 comment | 0 complexity | 965e9c793761a122aa49af113e90b81a MD5 | raw file
  1. /**
  2. * Copyright (C) 2009-2011 the original author or authors.
  3. * See the notice.md file distributed with this work for additional
  4. * information regarding copyright ownership.
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.fusesource.scalate
  19. package wikitext
  20. import org.fusesource.scalate.test.FunSuiteSupport
  21. /**
  22. * Abstract base class to build Confluence wiki markup test classes
  23. */
  24. abstract class AbstractConfluenceTest extends FunSuiteSupport {
  25. val filter = ConfluenceFilter
  26. protected def renderConfluence(source: String): String = {
  27. debug("Converting: %s", source)
  28. val context = new DefaultRenderContext("foo.html", new TemplateEngine())
  29. val actual = filter.filter(context, source)
  30. info("Generated: %s", actual)
  31. info(actual)
  32. actual
  33. }
  34. protected def assertFilter(source: String, expected: String): Unit = {
  35. val actual: String = renderConfluence(source)
  36. assertResult(expected) { actual }
  37. }
  38. }