Difference between revisions of "Processing test"

From Open Food Facts wiki
Jump to navigation Jump to search
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<small>[[Processing Taxonomy|< Processing Taxonomy]]</small>
 
<small>[[Processing Taxonomy|< Processing Taxonomy]]</small>
  
All tests follow the same structure. There is one test set per language. For each process adjective there is a separate test. And a test consists of a string and the required results (ingredient and process).
+
All tests follow the same structure. There is one ''test set'' per ''test  language''. Each ''test'' set consists of multiple ''tests''. Each ''test'' check the correct parsing and interpretation of a processed ingredient. A ''processed ingredient'' consists of a ''process'', taken from the ''ingredients processing taxonomy'' and an ''ingredient'' form the ''ingredients taxonomy''.
  
 
== Template ==
 
== Template ==
The template for processing adjectives tests:
+
The template for an ingredient and process test is described here:
  
 
   [ {  
 
   [ {  
Define the language for which the tests are applicable.
+
Define the language ('''lc''') for which the tests are applicable, for example dutch (''nl'').
   lc => "en",
+
   lc => "nl",
Define in the ingredients_text the original ingredients that must be tested. These should have the format process ingredient, ingredient process, or whatever is applicable for that language.
+
Define in the '''ingredients_text''' the process- ingredient combination that must be tested. In the example we want to test the processed ingredients ''sjalotpoeder'', ''wei-poeder'', vanillepoeder and ''gepelde sjalot''. In this example are ''poeder'' and ''gepelde'' the processes; and ''sjalot'', ''wei'' and ''vanille'' the ingredients. It is important that these processed ingredients are NOT in the ingredients taxonomy. The ingredients taxonomy has precedence over the process taxonomy.
   ingredients_text => "raw milk, sliced tomatoes, garlic powder, powdered eggplant, courgette powder" },
+
   ingredients_text => "sjalotpoeder, wei-poeder, vanillepoeder, gepelde sjalot" },
 +
 
 +
The ingredients_text ''sjalotpoeder'', should result in the ingredient with id ''en:shallot'' and process ''en:powdered''. These are the key entries in the ingredients and process taxonomy respectively. Usually these are in english (en:).
 +
  [ {
 +
    'id' => 'en:shallot',
 +
    'text' => 'sjalot',
 +
    'processing' => 'en:powdered'
 +
  },
  
The ingredients_text ''raw milk'', should result in the ingredient with id ''en: raw milk''. The adjective is ignored.
 
  [ {
 
      'id' => 'en:raw-milk',
 
      'text' => 'raw milk'
 
    },
 
 
The ingredients_text ''sliced tomatoes'', should result in the ingredient with id ''en:tomato'' and processing ''en:sliced''.
 
The ingredients_text ''sliced tomatoes'', should result in the ingredient with id ''en:tomato'' and processing ''en:sliced''.
 
     {
 
     {
Line 44: Line 46:
 
   }
 
   }
 
   ] ]
 
   ] ]
 +
 
== Error message ==
 
== Error message ==
An error message for the '''text''' field might be:
 
 
   #  Failed test at t/ingredients_processing.t line 143.
 
   #  Failed test at t/ingredients_processing.t line 143.
  #    Structures begin differing at:
+
17060
  #          $got->[3]{text} = 'gehakte tomaten'
+
#    Structures begin differing at:
  #    $expected->[3]{text} = 'tomaten'
+
17061
This should be read as: replace ''gehakte tomaten'' with ''tomaten'' in the test
+
#          $got->[3]{text} = 'gehakte tomaten'
 
+
17062
To test the ingredient ''gemalen kokos'', we get:
+
#    $expected->[3]{text} = 'tomaten'
#  Failed test at ../t/ingredients_processing.t line 143.
+
17063
#    Structures begin differing at:
 
#          $got->[3]{processing} = Does not exist
 
#    $expected->[3]{processing} = 'en:ground'
 
The test failed here as ''gemalen kokos'' is already in the ingredients taxonomy. We need to test with an ingredient that is not in the ingredients taxonomy. "gemalen XYZ" should not be in the ingredients taxonomy, but "XYZ" should be. (otherwise we won't match)
 
 
 
So the '''got''' is what you specified in the test and the '''expected''' is what the app calculated.
 

Revision as of 14:43, 24 March 2020

< Processing Taxonomy

All tests follow the same structure. There is one test set per test language. Each test set consists of multiple tests. Each test check the correct parsing and interpretation of a processed ingredient. A processed ingredient consists of a process, taken from the ingredients processing taxonomy and an ingredient form the ingredients taxonomy.

Template

The template for an ingredient and process test is described here:

  [ { 

Define the language (lc) for which the tests are applicable, for example dutch (nl).

  lc => "nl",

Define in the ingredients_text the process- ingredient combination that must be tested. In the example we want to test the processed ingredients sjalotpoeder, wei-poeder, vanillepoeder and gepelde sjalot. In this example are poeder and gepelde the processes; and sjalot, wei and vanille the ingredients. It is important that these processed ingredients are NOT in the ingredients taxonomy. The ingredients taxonomy has precedence over the process taxonomy.

  ingredients_text => "sjalotpoeder, wei-poeder, vanillepoeder, gepelde sjalot" },

The ingredients_text sjalotpoeder, should result in the ingredient with id en:shallot and process en:powdered. These are the key entries in the ingredients and process taxonomy respectively. Usually these are in english (en:).

 [ {
   'id' => 'en:shallot',
   'text' => 'sjalot',
   'processing' => 'en:powdered'
 },

The ingredients_text sliced tomatoes, should result in the ingredient with id en:tomato and processing en:sliced.

    {
      'id' => 'en:tomato',

The id represents the parent key of sliced tomatoes in the ingredients taxonomy.

      'processing' => 'en:sliced',

The processing is the key of sliced in the processing taxonomy.

      'text' => 'tomatoes'

The text is parent key of the entry sliced tomatoes in the ingredients taxonomy ????

    },
    {
      'id' => 'en:garlic-powder',
      'text' => 'garlic powder'
    },
 {
   'id' => 'en:aubergine',
   'processing' => 'en:powdered',
   'text' => 'eggplant'
 },
 {
   'id' => 'en:courgette',
   'processing' => 'en:powdered',
   'text' => 'courgette'
  }
  ] ]

Error message

  #   Failed test at t/ingredients_processing.t line 143.

17060

  1. Structures begin differing at:

17061

  1. $got->[3]{text} = 'gehakte tomaten'

17062

  1. $expected->[3]{text} = 'tomaten'

17063