Package com.puppetlabs.geppetto.ruby.tests

Source Code of com.puppetlabs.geppetto.ruby.tests.PuppetTypeTests

/**
* Copyright (c) 2013 Puppet Labs, Inc. and other contributors, as listed below.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*   Puppet Labs
*/
package com.puppetlabs.geppetto.ruby.tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.io.File;
import java.util.List;

import com.puppetlabs.geppetto.ruby.PPTypeInfo;
import com.puppetlabs.geppetto.ruby.RubyHelper;
import org.eclipse.core.runtime.Path;
import org.junit.Test;

public class PuppetTypeTests {

  @Test
  public void testParseFunctionInNestedModules() throws Exception {
    File aRubyFile = TestDataProvider.getTestFile(new Path(
      "testData/pp-modules-ruby/module-x/lib/puppet/type/thing.rb"));
    RubyHelper helper = new RubyHelper();
    helper.setUp();
    try {
      List<PPTypeInfo> foundTypes = helper.getTypeInfo(aRubyFile);
      assertEquals("Should have found one function", 1, foundTypes.size());
      PPTypeInfo info = foundTypes.get(0);
      assertEquals("Should have found 'thing'", "thing", info.getTypeName());
      assertEquals("Should have found one parameter", 2, info.getParameters().size());
      assertEquals("Should have found two properties", 2, info.getProperties().size());

      PPTypeInfo.Entry nameEntry = info.getParameters().get("name");
      assertNotNull("Should have found a parameter called 'name'", nameEntry);
      assertEquals(
        "Should have found a description of 'name'", "<p>Description of name</p>", nameEntry.getDocumentation());

      // TODO: check "ensure"
      PPTypeInfo.Entry weightEntry = info.getProperties().get("weight");
      assertNotNull("Should have found a property called 'weight'", weightEntry);
      assertEquals(
        "Should have found a description of 'weight'", "<p>Description of weight</p>",
        weightEntry.getDocumentation());

      PPTypeInfo.Entry emptyEntry = info.getProperties().get("empty");
      assertNotNull("Should have found a property called 'weight'", emptyEntry);
      assertEquals("Should have found a missing description of 'empty'", "", emptyEntry.getDocumentation());

    }
    finally {
      helper.tearDown();
    }
  }

}
TOP

Related Classes of com.puppetlabs.geppetto.ruby.tests.PuppetTypeTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.