User Tools

Site Tools


at:tutorial:appendix

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
at:tutorial:appendix [2008/07/08 11:46] – added tvcutsemat:tutorial:appendix [2008/07/10 14:28] – Added tvcutsem
Line 1: Line 1:
 ====== Appendix ====== ====== Appendix ======
  
-In the appendix, we explain useful libraries available to the AmbientTalk/2 programmer.+In the appendix, we explain useful libraries available to the AmbientTalk/2 programmer. These libraries provide abstractions ranging from traditional, established "collections" up to newly researched language constructs, such as "ambient references".
  
 ===== Unit Testing Framework ===== ===== Unit Testing Framework =====
Line 7: Line 7:
 The file ''at/unit/test.at'' shipped with the AmbientTalk/2 system library defines a unit testing framework for AmbientTalk/2 which is similar in spirit and structure to [[http://www.junit.org|JUnit]] and SUnit. Load the module by executing ''import /.at.unit.test''. The file ''at/unit/test.at'' shipped with the AmbientTalk/2 system library defines a unit testing framework for AmbientTalk/2 which is similar in spirit and structure to [[http://www.junit.org|JUnit]] and SUnit. Load the module by executing ''import /.at.unit.test''.
  
-====== Creating a Unit Test ======+==== Creating a Unit Test ====
  
 To create your own unit test, make an extension of the ''UnitTest''object which is exported by the unit testing module. In the extension, define zero-arity methods starting with the prefix ''test''. Here is an example: To create your own unit test, make an extension of the ''UnitTest''object which is exported by the unit testing module. In the extension, define zero-arity methods starting with the prefix ''test''. Here is an example:
Line 29: Line 29:
 Like in JUnit and SUnit, it is possible to define two methods named ''setUp()'' and ''tearDown()'' that are invoked in between //each// individual ''test*'' method. Never rely on the lexical order of your unit test methods for the purposes of initialization, etc.! Unit test methods may be exacuted in an arbitrary order. Like in JUnit and SUnit, it is possible to define two methods named ''setUp()'' and ''tearDown()'' that are invoked in between //each// individual ''test*'' method. Never rely on the lexical order of your unit test methods for the purposes of initialization, etc.! Unit test methods may be exacuted in an arbitrary order.
  
-====== Assertions ======+==== Assertions ====
  
 Within a ''test*'' method, you can use a number of assertion methods to assert certain properties of your code: Within a ''test*'' method, you can use a number of assertion methods to assert certain properties of your code:
Line 60: Line 60:
 </note> </note>
  
-====== Asynchronous Unit Tests ======+==== Asynchronous Unit Tests ====
  
 Up to now, the unit testing framework assumed that all of your unit tests consisted of purely synchronous method invocations. When running the tests, all ''test*'' methods are invoked sequentially, and the unit test ends when the last ''test*'' method has been invoked. Up to now, the unit testing framework assumed that all of your unit tests consisted of purely synchronous method invocations. When running the tests, all ''test*'' methods are invoked sequentially, and the unit test ends when the last ''test*'' method has been invoked.
Line 83: Line 83:
 It is also possible to use ''makeFuture()'' to create a fresh future explicitly within the unit test method, and to use the returned resolver to resolve the future at the appropriate time. It is also possible to use ''makeFuture()'' to create a fresh future explicitly within the unit test method, and to use the returned resolver to resolve the future at the appropriate time.
  
-====== Test Suites ======+==== Test Suites ====
  
 It is possible to group multiple unit test objects into what is known as a "test suite". Running the test suite runs all of the component unit tests. You can create a new test suite as follows: It is possible to group multiple unit test objects into what is known as a "test suite". Running the test suite runs all of the component unit tests. You can create a new test suite as follows:
Line 95: Line 95:
  
 The ''TestSuite'' object groups the given unit test objects. You can execute all tests in batch by sending the test suite object the ''runTest'' message, just like for running a single unit test. It is possible to nest multiple test suites within each other. The ''TestSuite'' object groups the given unit test objects. You can execute all tests in batch by sending the test suite object the ''runTest'' message, just like for running a single unit test. It is possible to nest multiple test suites within each other.
 +
 +===== Basic Collections =====
 +
 +The modules ''/.at.collections.vector'' and ''/.at.collections.list'' define a Vector and List datastructure respectively.
 +
 +==== Vector ====
 +
 +A vector is a dynamically resizable AmbientTalk table (aka array). Vectors may be created as follows:
 +
 +<code>
 +import /.at.collections.vector;
 +def v := Vector.new(10); // a vector with starting length 10
 +</code>
 +
 +The constructor optionally takes a comparator as a second argument. A comparator is a binary function returning a boolean whose job is to compare elements of the Vector. This comparator is used among others when sorting the vector. The Vector's interface is as follows:
 +
 +<code>
 +// returns the number of elements in the vector (not the capacity of the vector!)
 +length()
 +// returns whether the vector contains elements or not
 +isEmpty()
 +// is the vector at max. capacity?
 +atMaxCapacity()
 +// return idx'th element or raise an IndexOutOfBounds exception
 +at(idx)
 +// write idx'th element or raise IndexOutOfBounds exception
 +//atPut(idx, val)
 +// iterate over the vector
 +each: iterator, returns nil
 +// map a unary function over the vector, returns a new vector
 +map: fun
 +// accumulate a function with a given starting value
 +inject: init into: accum;
 +// returns a new vector whose elements satisfy "cond"
 +filter: cond;
 +// implode a vector of character strings into one text string
 +implode()
 +// join a vector of character strings together with the given string
 +join(txt)
 +// returns a range [start,stop[ as a table
 +select(start, stop)
 +// appends an element to the back of the vector
 +// returns the vector itself
 +add(element)
 +// alias for add(element)
 +def <<(element)
 +// insert an element at a given position, causing subsequent elements to shift one pos to the right. Returns this vector
 +insert(atPos, element)
 +// delete the element at the given position, shifts all following elements one pos to the left. Returns the value of the element at the deleted position.
 +delete(atPos)
 +// adds elements to the back of the vector
 +push(element)
 +// deletes elements from the back of the vector
 +pop()
 +// return the index of the first element matching the given filter (a unary predicate), or nil if none is found
 +find: filter
 +// remove the given element from the vector, return true if the element was actually found and deleted, false otherwise
 +remove(elt, cmp := defaultComparator)
 +// remove all objects for which filter(elt) returns true
 +removeAll: filter
 +// destructively appends otherVector to self. Returns this vector
 +addAll(otherVector)
 +// empties the vector
 +clear()
 +// Return a new vector whose elements form the set-union of all elements in self U otherVector
 +union(otherVector, cmp := defaultComparator)
 +// Return a new vector whose elements form the set-intersection of all elements in self ^ otherVector
 +intersection(otherVector, cmp := defaultComparator)
 +// Return a new vector whose elements form the set-difference of self \ otherVector
 +difference(otherVector, cmp := defaultComparator)
 +// Quicksort the vector in-place. The comparator defines the ordering among elements.
 +sort(cmp := { |e1,e2| e1 < e2 })
 +// Turn the vector into a set without duplicates in O(nlogn + n)
 +// The vector's ordering is lost (it becomes sorted)
 +uniq(cmp := defaultComparator, ordercmp := {|e1,e2| e1 < e2 })
 +// return an element drawn randomly using a uniform distribution from the array or raise an EmptyVector exception.
 +random()
 +// return a table containing all elements of the vector
 +asTable()
 +</code>
 +
 +==== List ====
at/tutorial/appendix.txt · Last modified: 2021/09/24 10:28 by elisag