Roll back tests for fatturaPA

This commit is contained in:
David Bomba 2024-05-22 06:59:37 +10:00
parent 7d74bd3e29
commit e2361afff9

View File

@ -315,178 +315,178 @@ class FatturaPATest extends TestCase
// } // }
public function testBulkValidationX() // public function testBulkValidationX()
{ // {
$files = [ // $files = [
'tests/Integration/Einvoice/samples/fatturapa0.xml', // 'tests/Integration/Einvoice/samples/fatturapa0.xml',
]; // ];
foreach($files as $f) { // foreach($files as $f) {
$xmlstring = file_get_contents($f); // $xmlstring = file_get_contents($f);
$xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA); // $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml); // $json = json_encode($xml);
$payload = json_decode($json, true); // $payload = json_decode($json, true);
nlog($payload); // nlog($payload);
$validation_array = false; // $validation_array = false;
nlog($f); // nlog($f);
$rules = FatturaElettronica::getValidationRules($this->payload); // $rules = FatturaElettronica::getValidationRules($this->payload);
nlog($rules); // nlog($rules);
$this->assertIsArray($rules); // $this->assertIsArray($rules);
$payload = FatturaElettronica::from($payload)->toArray(); // $payload = FatturaElettronica::from($payload)->toArray();
// nlog($payload); // // nlog($payload);
$this->assertIsArray($payload); // $this->assertIsArray($payload);
$validation_array = FatturaElettronica::validate($payload); // $validation_array = FatturaElettronica::validate($payload);
$this->assertIsArray($validation_array); // $this->assertIsArray($validation_array);
// } catch(\Illuminate\Validation\ValidationException $e) { // // } catch(\Illuminate\Validation\ValidationException $e) {
// nlog($e->errors()); // // nlog($e->errors());
// } // // }
$this->assertIsArray($validation_array); // $this->assertIsArray($validation_array);
} // }
} // }
public function testBulkValidation() // public function testBulkValidation()
{ // {
$files = [ // $files = [
'tests/Integration/Einvoice/samples/fatturapa0.xml', // 'tests/Integration/Einvoice/samples/fatturapa0.xml',
'tests/Integration/Einvoice/samples/fatturapa1.xml', // 'tests/Integration/Einvoice/samples/fatturapa1.xml',
'tests/Integration/Einvoice/samples/fatturapa2.xml', // 'tests/Integration/Einvoice/samples/fatturapa2.xml',
'tests/Integration/Einvoice/samples/fatturapa3.xml', // 'tests/Integration/Einvoice/samples/fatturapa3.xml',
'tests/Integration/Einvoice/samples/fatturapa4.xml', // 'tests/Integration/Einvoice/samples/fatturapa4.xml',
'tests/Integration/Einvoice/samples/fatturapa5.xml', // 'tests/Integration/Einvoice/samples/fatturapa5.xml',
'tests/Integration/Einvoice/samples/fatturapa6.xml', // 'tests/Integration/Einvoice/samples/fatturapa6.xml',
]; // ];
foreach($files as $f) // foreach($files as $f)
{ // {
$xmlstring = file_get_contents($f); // $xmlstring = file_get_contents($f);
$xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA); // $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml); // $json = json_encode($xml);
$payload = json_decode($json, true); // $payload = json_decode($json, true);
nlog($payload); // nlog($payload);
$validation_array = false; // $validation_array = false;
try { // try {
nlog($f); // nlog($f);
$rules = FatturaElettronica::getValidationRules($this->payload); // $rules = FatturaElettronica::getValidationRules($this->payload);
nlog($rules); // nlog($rules);
$this->assertIsArray($rules); // $this->assertIsArray($rules);
$payload = FatturaElettronica::from($payload)->toArray(); // $payload = FatturaElettronica::from($payload)->toArray();
nlog($payload); // nlog($payload);
$this->assertIsArray($payload); // $this->assertIsArray($payload);
$validation_array = FatturaElettronica::validate($payload); // $validation_array = FatturaElettronica::validate($payload);
$this->assertIsArray($validation_array); // $this->assertIsArray($validation_array);
} catch(\Illuminate\Validation\ValidationException $e) { // } catch(\Illuminate\Validation\ValidationException $e) {
nlog($e->errors()); // nlog($e->errors());
} // }
$this->assertIsArray($validation_array); // $this->assertIsArray($validation_array);
} // }
} // }
public function testUpdateProps() // public function testUpdateProps()
{ // {
$update = [ // $update = [
'e_invoice' => $this->payload // 'e_invoice' => $this->payload
]; // ];
$response = $this->withHeaders([ // $response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'), // 'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token, // 'X-API-TOKEN' => $this->token,
])->putJson('/api/v1/companies/'.$this->company->hashed_id, $update); // ])->putJson('/api/v1/companies/'.$this->company->hashed_id, $update);
$response->assertStatus(200); // $response->assertStatus(200);
$arr = $response->json(); // $arr = $response->json();
$this->assertNotNull($arr['data']['e_invoice']); // $this->assertNotNull($arr['data']['e_invoice']);
} // }
public function testUpdateBadProps() // public function testUpdateBadProps()
{ // {
$update = [ // $update = [
'e_invoice' => $this->bad_payload // 'e_invoice' => $this->bad_payload
]; // ];
$response = $this->withHeaders([ // $response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'), // 'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token, // 'X-API-TOKEN' => $this->token,
])->putJson('/api/v1/companies/'.$this->company->hashed_id, $update); // ])->putJson('/api/v1/companies/'.$this->company->hashed_id, $update);
$response->assertStatus(200); // $response->assertStatus(200);
$arr = $response->json(); // $arr = $response->json();
$this->assertNotNull($arr['data']['e_invoice']); // $this->assertNotNull($arr['data']['e_invoice']);
} // }
public function testLaravelDataValidation() // public function testLaravelDataValidation()
{ // {
$rules = FatturaElettronica::getValidationRules($this->payload); // $rules = FatturaElettronica::getValidationRules($this->payload);
// nlog($rules); // // nlog($rules);
$this->assertIsArray($rules); // $this->assertIsArray($rules);
// $validation_array = false; // // $validation_array = false;
try { // try {
$validation_array = FatturaElettronica::validate($this->payload); // $validation_array = FatturaElettronica::validate($this->payload);
} // }
catch(\Illuminate\Validation\ValidationException $e) { // catch(\Illuminate\Validation\ValidationException $e) {
nlog($e->errors()); // nlog($e->errors());
} // }
$this->assertIsArray($validation_array); // $this->assertIsArray($validation_array);
// try{ // // try{
$array = FatturaElettronica::from($this->payload)->toArray(); // $array = FatturaElettronica::from($this->payload)->toArray();
// } // // }
// catch(\Exception $e){ // // catch(\Exception $e){
// echo $e->errors(); // // echo $e->errors();
// $errors = $e->getErrors(); // // $errors = $e->getErrors();
// echo $e->getMessage().PHP_EOL; // // echo $e->getMessage().PHP_EOL;
// } // // }
// $this->assertIsArray($array); // // $this->assertIsArray($array);
} // }
} }