Logo

dev-resources.site

for different kinds of informations.

#005 | Automate PDF data extraction: User Acceptance Testing

Published at
12/12/2024
Categories
projectsukoshizutsu
mvp
python
Author
sukoshizutsu
Categories
3 categories in total
projectsukoshizutsu
open
mvp
open
python
open
Author
12 person written this
sukoshizutsu
open
#005 | Automate PDF data extraction: User Acceptance Testing

Overview

Prior to each feature release, I do User Acceptance Testing ("UAT") to surface bugs and ensure the business logic is correctly translated to code.

I only clear a feature for release after UAT is 100% successful.

My reasoning is simple: you only get one chance to make a good first impression to your end user, and a poor release makes it doubly hard to do so.

Meme

Although this is an MVP feature that isn't meant for production release, I thought it'd be good to do some UAT to keep my skills fresh.

Results

Of the 19 UAT scenarios I came up with, one failed because of a change in the Custodian Statement PDF template.

I anticipated this risk during Discovery, but truth be told, I did not expect the issue to crop up so soon.

I will go into the bug fix details later in the article.

Methodology

My UAT process involves using the business logic or feature requirements as a reference to create test scenarios and expected outcomes.

Test scenarios don't need to be complicated. They can be as simple as : "The feature generates a CSV file within 30 seconds".

For the UAT, I processed 71 pages of documents from 10 Custodian Statement PDFs. This should be a sufficiently large enough sample set.

The expected output is three CSV files containing specific datapoints from the Fund Holdings, Securities Holdings and Cash Holdings sections of the Custodian Statement PDF.

I came up with the following test cases:

CSV 1: Fund Holdings

Fund Holdings CSV

CSV 2: Securities Holdings

Securities Holdings CSV

CSV 3: Cash Holdings

Cash Holdings

Bug Fixing

The one failed test was because the Custodian Statement PDF's template changed slightly in November. More specifically, the values in the "Current Value# 1. Foreign Currency 2. RM Equivalent" column of a Fund Holdings table now has an extra "-\n" prefix.

For example, instead of reading "USD 10,000" in previous PDFs, the value now reads "- USD10,000".

Change in PDF template

This small change resulted in the following issue:

CSV output error

I consulted ChatGPT on a fix, and it recommended the following scrubbing logic be added to remove the incorrect "-/n" prefix.

# Scrub error prefix
df['Currency'] = df['Currency'].str.replace('[-\n]', '', regex=True)
Enter fullscreen mode Exit fullscreen mode

The scrubbing did the trick and the Fund Holdings CSV output now comes out as expected.

What Next?

I'm now comfortable that the code to extract PDF data is functional. That said, I don't think a CSV file is the best place to store all this data.

While CSV is user friendly (to me), storing data in a database makes it much easier to retrieve and manipulate data as per the end user's requirements.

I have very limited experience in databases. So what I'll do next is Discovery on a database application that I can onboard quickly.

--Ends

mvp Article's
30 articles in total
Favicon
🚀 How I Adopted the Lean Startup Mindset to Drive Innovation in My Team
Favicon
Why MVP Development Is Your Startup's Secret to Success
Favicon
How to Get a Free and Fast MVP for Blockchain Projects
Favicon
Unlock the Future of Prototyping: How No-Code Can Help You Build Faster, Smarter
Favicon
How to Build an MVP and Raise Funding in 2025
Favicon
#006 | Backend Database : Discovery
Favicon
Validate Email Address Format and Domain Libraries for Use in Next.js
Favicon
#004 | Automate PDF data extraction: Build
Favicon
#003 | Automate PDF data extraction: Discovery
Favicon
The quick code controversy: Why it's time to re-examine the quick vs. clean code debate
Favicon
#005 | Automate PDF data extraction: User Acceptance Testing
Favicon
Online marketplace MVP - Building a two-sided marketplace MVP using Next.js and MongoDB - From idea to launch
Favicon
#002 | What am I building?
Favicon
Building a Full-Stack App with Next.js, and Firebase: A Step-by-Step Guide
Favicon
Planning an event soon? Or just love pretending you’re throwing the party of the century?
Favicon
Hitting your goals on time: Lessons from my first year in web development.
Favicon
Accelerating SaaS MVP Development: A Guide to Fast-Tracking Your Web App
Favicon
How to launch your startup - How to launch your MVP
Favicon
How generate wining SaaS using your simple Idea
Favicon
MVP as an Excuse for Bad Code?
Favicon
Do MVPs Fail Us?
Favicon
AI in MVP Development: Benefits and Applications You Never Knew Existed!
Favicon
How to Prioritize Features in Your MVP: A Strategic Approach for Startups
Favicon
Exploring essential MVP approaches #1
Favicon
Gerenciamento de projetos ágeis: O inicio de tudo
Favicon
How to build a marketplace MVP fast in Next.js
Favicon
How I built a new product in just 15 hours
Favicon
The Power of MVP: Turning Ideas into Reality with Minimum Viable Products
Favicon
Zero to Launch: Our Algorithm For An Efficient Project Launch
Favicon
From Idea to Launch: My 30-Day MVP Journey

Featured ones: