use super::*;
impl<N: Network> Parser for Locator<N> {
#[inline]
fn parse(string: &str) -> ParserResult<Self> {
let (string, id) = ProgramID::parse(string)?;
let (string, (_, resource)) = pair(tag("/"), Identifier::parse)(string)?;
Ok((string, Self { id, resource }))
}
}
impl<N: Network> FromStr for Locator<N> {
type Err = Error;
#[inline]
fn from_str(string: &str) -> Result<Self> {
match Self::parse(string) {
Ok((remainder, object)) => {
ensure!(remainder.is_empty(), "Failed to parse string. Found invalid character in: \"{remainder}\"");
Ok(object)
}
Err(error) => bail!("Failed to parse string. {error}"),
}
}
}
impl<N: Network> Debug for Locator<N> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
Display::fmt(self, f)
}
}
impl<N: Network> Display for Locator<N> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "{id}/{resource}", id = self.id, resource = self.resource)
}
}
#[cfg(test)]
mod tests {
use super::*;
use snarkvm_console_network::Testnet3;
type CurrentNetwork = Testnet3;
#[test]
fn test_import_parse() -> Result<()> {
let locator = Locator::<CurrentNetwork>::parse("foo.aleo/compute").unwrap().1;
assert_eq!(locator.name(), &Identifier::<CurrentNetwork>::from_str("foo")?);
assert_eq!(locator.network(), &Identifier::<CurrentNetwork>::from_str("aleo")?);
assert_eq!(locator.resource(), &Identifier::<CurrentNetwork>::from_str("compute")?);
assert!(Locator::<CurrentNetwork>::parse("foo.aleo").is_err());
assert!(Locator::<CurrentNetwork>::parse("foo/compute").is_err());
Ok(())
}
#[test]
fn test_import_display() -> Result<()> {
let id = Locator::<CurrentNetwork>::from_str("foo.aleo/compute")?;
assert_eq!("foo.aleo/compute", id.to_string());
assert!(Locator::<CurrentNetwork>::parse("foo.aleo").is_err());
assert!(Locator::<CurrentNetwork>::parse("foo/compute").is_err());
Ok(())
}
}