rss_expanded_image_2_result test case pass

This commit is contained in:
Henry Schimke
2022-12-16 13:04:55 -06:00
parent c0ffa2bb1c
commit 54d68c174d
19 changed files with 118 additions and 109 deletions

View File

@@ -26,6 +26,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType, ResultParser};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct AddressBookParsedRXingResult { pub struct AddressBookParsedRXingResult {
names: Vec<String>, names: Vec<String>,
nicknames: Vec<String>, nicknames: Vec<String>,

View File

@@ -59,6 +59,7 @@ lazy_static! {
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(Debug)]
pub struct CalendarParsedRXingResult { pub struct CalendarParsedRXingResult {
summary: String, summary: String,
start: i64, start: i64,
@@ -363,3 +364,11 @@ impl CalendarParsedRXingResult {
self.longitude self.longitude
} }
} }
impl PartialEq for CalendarParsedRXingResult {
fn eq(&self, other: &Self) -> bool {
self.summary == other.summary && self.start == other.start && self.startAllDay == other.startAllDay && self.end == other.end && self.endAllDay == other.endAllDay && self.location == other.location && self.organizer == other.organizer && self.attendees == other.attendees && self.description == other.description && self.latitude == other.latitude && self.longitude == other.longitude
}
}
impl Eq for CalendarParsedRXingResult {}

View File

@@ -24,6 +24,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType, ResultParser};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct EmailAddressParsedRXingResult { pub struct EmailAddressParsedRXingResult {
tos: Vec<String>, tos: Vec<String>,
ccs: Vec<String>, ccs: Vec<String>,

View File

@@ -33,9 +33,6 @@ use std::collections::HashMap;
use super::{ParsedRXingResult, ParsedRXingResultType}; use super::{ParsedRXingResult, ParsedRXingResultType};
pub const KILOGRAM: &'static str = "KG";
pub const POUND: &'static str = "LB";
/** /**
* Represents a parsed result that encodes extended product information as encoded * Represents a parsed result that encodes extended product information as encoded
* by the RSS format, like weight, price, dates, etc. * by the RSS format, like weight, price, dates, etc.
@@ -43,7 +40,7 @@ pub const POUND: &'static str = "LB";
* @author Antonio Manuel Benjumea Conde, Servinform, S.A. * @author Antonio Manuel Benjumea Conde, Servinform, S.A.
* @author Agustín Delgado, Servinform, S.A. * @author Agustín Delgado, Servinform, S.A.
*/ */
#[derive(PartialEq, Eq)] #[derive(PartialEq, Eq,Debug)]
pub struct ExpandedProductParsedRXingResult { pub struct ExpandedProductParsedRXingResult {
rawText: String, rawText: String,
productID: String, productID: String,
@@ -73,6 +70,9 @@ impl ParsedRXingResult for ExpandedProductParsedRXingResult {
} }
impl ExpandedProductParsedRXingResult { impl ExpandedProductParsedRXingResult {
pub const KILOGRAM: &'static str = "KG";
pub const POUND: &'static str = "LB";
pub fn new( pub fn new(
rawText: String, rawText: String,
productID: String, productID: String,

View File

@@ -92,13 +92,13 @@ pub fn parse(result: &crate::RXingResult) -> Option<super::ParsedClientResult> {
"3100" | "3101" | "3102" | "3103" | "3104" | "3105" | "3106" | "3107" | "3108" "3100" | "3101" | "3102" | "3103" | "3104" | "3105" | "3106" | "3107" | "3108"
| "3109" => { | "3109" => {
weight = value; weight = value;
weightType = ExpandedProductParsedResult::KILOGRAM.into(); weightType = ExpandedProductParsedRXingResult::KILOGRAM.into();
weightIncrement = ai[3..].to_owned() weightIncrement = ai[3..].to_owned()
} }
"3200" | "3201" | "3202" | "3203" | "3204" | "3205" | "3206" | "3207" | "3208" "3200" | "3201" | "3202" | "3203" | "3204" | "3205" | "3206" | "3207" | "3208"
| "3209" => { | "3209" => {
weight = value; weight = value;
weightType = ExpandedProductParsedResult::POUND.into(); weightType = ExpandedProductParsedRXingResult::POUND.into();
weightIncrement = ai[3..].to_owned(); weightIncrement = ai[3..].to_owned();
} }
"3920" | "3921" | "3922" | "3923" => { "3920" | "3921" | "3922" | "3923" => {

View File

@@ -24,6 +24,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(Debug)]
pub struct GeoParsedRXingResult { pub struct GeoParsedRXingResult {
latitude: f64, latitude: f64,
longitude: f64, longitude: f64,
@@ -116,3 +117,10 @@ impl GeoParsedRXingResult {
&self.query &self.query
} }
} }
impl PartialEq for GeoParsedRXingResult {
fn eq(&self, other: &Self) -> bool {
self.latitude == other.latitude && self.longitude == other.longitude && self.altitude == other.altitude && self.query == other.query
}
}
impl Eq for GeoParsedRXingResult{}

View File

@@ -23,6 +23,7 @@ use super::ParsedRXingResult;
* *
* @author jbreiden@google.com (Jeff Breidenbach) * @author jbreiden@google.com (Jeff Breidenbach)
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct ISBNParsedRXingResult { pub struct ISBNParsedRXingResult {
isbn: String, isbn: String,
} }

View File

@@ -23,6 +23,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType};
* *
* @author dswitkin@google.com (Daniel Switkin) * @author dswitkin@google.com (Daniel Switkin)
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct ProductParsedRXingResult { pub struct ProductParsedRXingResult {
product_id: String, product_id: String,
normalized_product_id: String, normalized_product_id: String,

View File

@@ -24,6 +24,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType, ResultParser};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct SMSParsedRXingResult { pub struct SMSParsedRXingResult {
numbers: Vec<String>, numbers: Vec<String>,
vias: Vec<String>, vias: Vec<String>,

View File

@@ -23,6 +23,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct TelParsedRXingResult { pub struct TelParsedRXingResult {
number: String, number: String,
telURI: String, telURI: String,

View File

@@ -24,6 +24,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType};
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash, Debug)]
pub struct TextParsedRXingResult { pub struct TextParsedRXingResult {
text: String, text: String,
language: String, language: String,

View File

@@ -23,6 +23,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType, ResultParser, URIResultPar
* *
* @author Sean Owen * @author Sean Owen
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct URIParsedRXingResult { pub struct URIParsedRXingResult {
uri: String, uri: String,
title: String, title: String,

View File

@@ -21,6 +21,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType};
/** /**
* Represents a parsed result that encodes a Vehicle Identification Number (VIN). * Represents a parsed result that encodes a Vehicle Identification Number (VIN).
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct VINParsedRXingResult { pub struct VINParsedRXingResult {
vin: String, vin: String,
world_manufacturer_id: String, world_manufacturer_id: String,

View File

@@ -23,6 +23,7 @@ use super::{ParsedRXingResult, ParsedRXingResultType, ResultParser};
* *
* @author Vikram Aggarwal * @author Vikram Aggarwal
*/ */
#[derive(PartialEq, Eq,Hash,Debug)]
pub struct WifiParsedRXingResult { pub struct WifiParsedRXingResult {
ssid: String, ssid: String,
networkEncryption: String, networkEncryption: String,

View File

@@ -87,6 +87,7 @@ mod VINParsedResultTestCase;
#[cfg(test)] #[cfg(test)]
mod WifiParsedResultTestCase; mod WifiParsedResultTestCase;
#[derive(PartialEq, Eq, Debug)]
pub enum ParsedClientResult { pub enum ParsedClientResult {
TextResult(TextParsedRXingResult), TextResult(TextParsedRXingResult),
TelResult(TelParsedRXingResult), TelResult(TelParsedRXingResult),

View File

@@ -1,102 +0,0 @@
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* This software consists of contributions made by many individuals,
* listed below:
*
* @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es)
* @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.es)
*
* These authors would like to acknowledge the Spanish Ministry of Industry,
* Tourism and Trade, for the support in the project TSI020301-2008-2
* "PIRAmIDE: Personalizable Interactions with Resources on AmI-enabled
* Mobile Dynamic Environments", leaded by Treelogic
* ( http://www.treelogic.com/ ):
*
* http://www.piramidepse.com/
*
*/
package com.google.zxing.oned.rss.expanded;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.nio.file.Path;
import java.util.HashMap;
import javax.imageio.ImageIO;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.BufferedImageLuminanceSource;
import com.google.zxing.NotFoundException;
import com.google.zxing.ReaderException;
import com.google.zxing.RXingResult;
import com.google.zxing.client.result.ExpandedProductParsedRXingResult;
import com.google.zxing.client.result.ParsedRXingResult;
import com.google.zxing.client.result.RXingResultParser;
import com.google.zxing.common.AbstractBlackBoxTestCase;
import com.google.zxing.common.BitArray;
import com.google.zxing.common.GlobalHistogramBinarizer;
import org.junit.Assert;
import org.junit.Test;
/**
* @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es)
* @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.es)
*/
public final class RSSExpandedImage2resultTestCase extends Assert {
@Test
public void testDecodeRow2result2() throws Exception {
// (01)90012345678908(3103)001750
ExpandedProductParsedRXingResult expected =
new ExpandedProductParsedRXingResult("(01)90012345678908(3103)001750",
"90012345678908",
null, null, null, null, null, null,
"001750",
ExpandedProductParsedRXingResult.KILOGRAM,
"3", null, null, null, new HashMap<>());
assertCorrectImage2result("2.png", expected);
}
private static void assertCorrectImage2result(String fileName, ExpandedProductParsedRXingResult expected)
throws IOException, NotFoundException {
Path path = AbstractBlackBoxTestCase.buildTestBase("src/test/resources/blackbox/rssexpanded-1/").resolve(fileName);
BufferedImage image = ImageIO.read(path.toFile());
BinaryBitmap binaryMap = new BinaryBitmap(new GlobalHistogramBinarizer(new BufferedImageLuminanceSource(image)));
int rowNumber = binaryMap.getHeight() / 2;
BitArray row = binaryMap.getBlackRow(rowNumber, null);
RXingResult theRXingResult;
try {
RSSExpandedReader rssExpandedReader = new RSSExpandedReader();
theRXingResult = rssExpandedReader.decodeRow(rowNumber, row, null);
} catch (ReaderException re) {
fail(re.toString());
return;
}
assertSame(BarcodeFormat.RSS_EXPANDED, theRXingResult.getBarcodeFormat());
ParsedRXingResult result = RXingResultParser.parseRXingResult(theRXingResult);
assertEquals(expected, result);
}
}

View File

@@ -20,3 +20,6 @@ mod rss_expanded_internal_test_case;
#[cfg(test)] #[cfg(test)]
mod rss_expanded_image_2_binary_test_tase; mod rss_expanded_image_2_binary_test_tase;
#[cfg(test)]
mod rss_expanded_image_2_result_test_case;

View File

@@ -0,0 +1,80 @@
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* This software consists of contributions made by many individuals,
* listed below:
*
* @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es)
* @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.es)
*
* These authors would like to acknowledge the Spanish Ministry of Industry,
* Tourism and Trade, for the support in the project TSI020301-2008-2
* "PIRAmIDE: Personalizable Interactions with Resources on AmI-enabled
* Mobile Dynamic Environments", leaded by Treelogic
* ( http://www.treelogic.com/ ):
*
* http://www.piramidepse.com/
*
*/
use std::{rc::Rc, collections::HashMap};
use crate::{client::result::{ExpandedProductParsedRXingResult, ParsedClientResult}, common::{BitArray, GlobalHistogramBinarizer}, BinaryBitmap, BufferedImageLuminanceSource, BarcodeFormat, oned::{rss::expanded::RSSExpandedReader, OneDReader}};
/**
* @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es)
* @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.es)
*/
#[test]
fn testDecodeRow2result2() {
// (01)90012345678908(3103)001750
let expected =
ExpandedProductParsedRXingResult::new("(01)90012345678908(3103)001750".to_owned(),
"90012345678908".to_owned(),
"".to_owned(), "".to_owned(), "".to_owned(), "".to_owned(), "".to_owned(), "".to_owned(),
"001750".to_owned(),
ExpandedProductParsedRXingResult::KILOGRAM.to_owned(),
"3".to_owned(), "".to_owned(), "".to_owned(), "".to_owned(), HashMap::new());
assertCorrectImage2result("2.png", expected);
}
fn assertCorrectImage2result( fileName:&str, expected:ExpandedProductParsedRXingResult)
{
let path = format!("test_resources/blackbox/rssexpanded-1/{}",fileName);
let image = image::open(path).expect("image must exist");
let binaryMap = BinaryBitmap::new(Rc::new(GlobalHistogramBinarizer::new(Box::new(BufferedImageLuminanceSource::new(image)))));
let rowNumber = binaryMap.getHeight() as usize / 2;
let row = binaryMap.getBlackRow(rowNumber, &mut BitArray::new()).expect("get row");
let mut rssExpandedReader = RSSExpandedReader::new();
let theRXingResult= rssExpandedReader.decodeRow(rowNumber as u32, &row, &HashMap::new()).expect("must decode");
assert_eq!(&BarcodeFormat::RSS_EXPANDED, theRXingResult.getBarcodeFormat());
let ParsedClientResult::ExpandedProductResult(result) = crate::client::result::parseRXingResult(&theRXingResult) else {
panic!("incorrect result type found");
};
assert_eq!(expected, result);
}

View File

@@ -582,7 +582,7 @@ impl RSSExpandedReader {
// for i in 1..self.pairs.len() { // for i in 1..self.pairs.len() {
// for (int i = 1; i < this.pairs.size(); ++i) { // for (int i = 1; i < this.pairs.size(); ++i) {
for currentPair in &self.pairs { for currentPair in self.pairs.iter().skip(1) {
// let currentPair = self.pairs.get(i).unwrap(); // let currentPair = self.pairs.get(i).unwrap();
checksum += currentPair.getLeftChar().unwrap().getChecksumPortion(); checksum += currentPair.getLeftChar().unwrap().getChecksumPortion();
s += 1; s += 1;