Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated PR and fixed some typos

...

IDDescriptionTest Data
1Tests when there are no providers found by the ServiceLoader API due to missing or empty meta-inf fileNo META-INF file on classpath
2Tests when there is an error thrown from ServiceLoader APIMETA-INF file contains class that doesn’t exit
3Tests when UDF Provider has no function classesUDFP whose getUDF func returns null
4Tests when UDF Provider has empty function classUDFP whose getUDF func returns empty array of classes
5Tests when function classes don’t implement UserDefinedFunction interfaceUDF with function class that doesn’t implement UserDefinedFunction interface
6Tests when function classes don’t have annotationsUDF with function class that doesn’t have UserDefinedFunctionIdentification annotation
7Tests when function classes have empty/invalid annotation fieldsUDF with function class that has annotation function with empty fields
8Tests when function classes have no evaluate functionUDF with function class whose doesn’t have method called evaluate
9Tests when function can’t be foundFunction call from schema with no matching UDF loaded
10Tests when function class have overloaded evaluate functionUDF with overloaded evaluate function
11Tests when arguments number incorrectFunction call from schema with incorrect arg number
12Tests when argument types incorrectFunction call from schema with incorrect arg type
13Tests when argument types unsupportedFunction call from schema with unsupported type (such as Array of String)
14Tests when return type unsupportedUDF with unsupported return type such as Array of Arrays
15Tests UDF with no argsUDF with no params
16Tests UDF with no return typeUDF with void return type
17Tests UDF with primitive int params and returnsUDF with primitive params and return
18Tests UDF with primitive byte params and returnsUDF with primitive params and return
19Tests UDF with primitive byte array params and returnsUDF with primitive params and return
20Tests UDF with primitive short params and returnsUDF with primitive params and return
21Tests UDF with primitive long params and returnsUDF with primitive params and return
22Tests UDF with primitive double params and returnsUDF with primitive params and return
23Tests UDF with primitive float params and returnsUDF with primitive params and return
24Tests UDF with primitive boolean params and returnsUDF with primitive params and return
25Tests UDF with Boxed Integer params and returnsUDF with boxed params and return
26Tests UDF with Boxed Byte params and returnsUDF with boxed params and return
27Tests UDF with Boxed Short params and returnsUDF with boxed params and return
28Tests UDF with Boxed Long params and returnsUDF with boxed params and return
29Tests UDF with Boxed Double params and returnsUDF with boxed params and return
30Tests UDF with Boxed Float params and returnsUDF with boxed params and return
31Tests UDF with Boxed Boolean params and returnsUDF with boxed params and return
32Tests UDF with Java Big Integer params and returnsUDF with specified params and returns
33Tests UDF with Java Big Decimal params and returnsUDF with specified params and returns
34Tests UDF with String params and returnsUDF with specified params and returns
35Tests when no UDFs called, and no UDFs available to be loadedNo UDFs on classpath, no UDF in schema
36Tests when UDFs called, but no UDFs loadedNo UDFs on classpath, UDF in schema
37Tests when UDF called with default namespaceDefault namespace set to UDF namespaceURI; UDF calls with no prefix
38Tests when exceptions thrown during loading UDFPUDFP classes throws exception in class
39Tests when exceptions thrown during loading UDFP’s UDF classesUDFP throws exception in getUDFs function
40Tests when exceptions thrown during loading UDFUDF throws exception in class
41Tests when custom exceptions thrown during evaluating (FatalError)UDF throws exception in evaluate function
42Tests when UDFProcessingError thrown during evaluating (ProcessingError)UDF throws UDFProcessingError in evaluate function
43Tests when UDF initializer returns object of wrong typeUDFP’s initialization function creates UDF object of different type

Prototype

UDF Jars: HAEMSLConversions.jar and UDFunctionProviderImpl.jar. Both extend UDFunctionProvider.jar.

...

Pull Requests

https://github.com/apache/incubator-daffodil/pull/279/commits/53ae92f43a31623f4aa1544db96d3bab0112b46f

View file
nameHAEMSLConversions.jar
height250
View file
nameMockDaffodil.jar
height250
View file
nameUDFunctionProvider.jar
height250

273 - Initial Proposal

https://github.com/apache/incubator-daffodil/pull/279 - Final Product

...