⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fileappendtest.groovy

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 GROOVY
字号:
package org.codehaus.groovy.runtime;import java.io.Fileimport java.io.Reader/**  * Test File append and left shift methods in Groovy *  * @author <a href="mailto:joachim.baumann@xinaris.de">Joachim Baumann</a> * @version $Revision: 1.1 $ */class FileAppendTest extends GroovyTestCase {	/**	 * The following instances are used in testing the file writes	 */	static text = """			<groovy>			  <things>			    <thing>Jelly Beans</thing>			  </things>			  <music>			    <tune>The 59th Street Bridge Song</tune>			  </music>			  <characters>			    <character name="Austin Powers">			       <enemy>Dr. Evil</enemy>			       <enemy>Mini Me</enemy>			    </character>			  </characters>			</groovy>			"""	static gPathResult = new XmlSlurper().parseText(text)	static gPathWriteTo;	{		StringWriter sw = new StringWriter()		gPathResult.writeTo(sw)		gPathWriteTo = sw.toString()	}		// see below for class definition	def testInstance = new TestClass()	// Our file instance	def File file;		void setUp() {		// Setup guarantees us that we use a non-existent file		file = File.createTempFile("unitTest", ".txt") 		assert file.exists() == true		//println file.canonicalPath		assert file.length() == 0L	}	void tearDown() {		// we remove our temporary file		def deleted = false		while(deleted == false)			deleted = file.delete()		assert file.exists() == false	}	void testAppendString(){		def expected				// test new		file.append(text)		expected = text		assert hasContents(file, expected)				// test existing		file.append(text)		expected += text		assert hasContents(file, expected)	}	 			void testAppendObjectToString(){		def expected				// test new		file.append(testInstance)		expected = testInstance.toString()		assert hasContents(file, expected)				// test existing		file.append(testInstance)		expected += testInstance.toString()		assert hasContents(file, expected)	}	void testappendWritable(){		def expected				// test new		file.append(gPathResult)		expected = gPathWriteTo		assert hasContents(file, expected)				// test existing		file.append(gPathResult)		expected += gPathWriteTo		assert hasContents(file, expected)	}	void testappendMixed(){		def expected				// test new		file.append(text)		expected = text		assert hasContents(file, expected)				file.append(testInstance)		expected += testInstance.toString()		assert hasContents(file, expected)				file.append(gPathResult)		expected += gPathWriteTo		assert hasContents(file, expected)				// test existing		file.append(gPathResult)		expected += gPathWriteTo		assert hasContents(file, expected)		file.append(testInstance)		expected += testInstance.toString()		assert hasContents(file, expected)		file.append(text)		expected += text		assert hasContents(file, expected)	}	void testLeftShiftString(){		def expected				// test new		file << text		expected = text		assert hasContents(file, expected)				// test existing		file << text		expected += text		assert hasContents(file, expected)	}				void testLeftShiftObjectToString(){		def expected				// test new		file << testInstance		expected = testInstance.toString()		assert hasContents(file, expected)				// test existing		file << testInstance		expected += testInstance.toString()		assert hasContents(file, expected)	}	void testLeftShiftWritable(){		def expected				// test new		file << gPathResult		expected = gPathWriteTo		assert hasContents(file, expected)				// test existing		file << gPathResult		expected += gPathWriteTo		assert hasContents(file, expected)	}		 	void testLeftShiftMixed(){		def expected				// test new		file << text		expected = text		assert hasContents(file, expected)				file << testInstance		expected += testInstance.toString()		assert hasContents(file, expected)				file << gPathResult		expected += gPathWriteTo		assert hasContents(file, expected)				// test existing		file << gPathResult		expected += gPathWriteTo		assert hasContents(file, expected)		file << testInstance		expected += testInstance.toString()		assert hasContents(file, expected)		file << text		expected += text		assert hasContents(file, expected)	}	boolean hasContents(File f, String expected)	{		assert file.length() == expected.length()		// read contents the Java way		char[] cbuf = new char[expected.length()];		def fileReader = new FileReader(file)		fileReader.read(cbuf)		return expected == String.valueOf(cbuf)	}}class TestClass {	@Property testString = "TestThis"	public String toString() {		super.toString() + ": " + testString	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -