Tagged Questions
The verify tag has no wiki summary.
13
votes
7answers
395 views
How to “check” if a function really gives a random result?
How can one be sure that a function is really random or as close to the notion as possible? Also, what is the distinction between random and pseudo-random? Finally, what algorithms/sources can be ...
10
votes
6answers
14k views
Verify email in Java
Is there any way to verify in Java code that an e-mail address is valid. By valid, I don't just mean that it's in the correct format (someone@domain.subdomain), but that's it's a real active e-mail ...
7
votes
2answers
2k views
How to verify if a delegate responds to a selector?
I know I need to write:
[delegate respondsToSelector:@selector(myMethod:)]
But the compiler is complaining that respondsToSelector is not a method in the protocol, which is correct, However I have ...
7
votes
11answers
1k views
Verify database changes (version-control)
I have read lots of posts about the importance of database version control. However, I could not find a simple solution how to check if database is in state that it should be.
For example, I have a ...
5
votes
1answer
563 views
Guidelines for using Assert versus Verify
I'm new to unit testing, and I'm learning how to use NUnit and Moq. NUnit provides Assert syntax for testing conditions in my unit tests, while Moq provides some Verify functions. To some extent these ...
4
votes
2answers
46 views
What is the Best Way to Validated New User after Successful Payment?
I have a member sign-up process which requires a monthly subscription payment. I have a script running which can update my member's database using an IPN script. I am curious about the best way to ...
4
votes
3answers
303 views
Is there a way of having something like jUnit Assert message argument in Mockito's verify method?
Let's assume a snippet of testing code:
Observable model = Class.forName(fullyQualifiedMethodName).newInstance();
Observer view = Mockito.mock(Observer.class);
model.addObserver(view);
for (Method ...
4
votes
3answers
3k views
Verifying a method was called
Using Moq, I have a very odd issue where the setup on a mock only seems to work if the method I am setting up is public. I don't know if this is a Moq bug or if I just have this wrong (newbie to ...
3
votes
1answer
283 views
Verify method call with Lamda expression - Moq
I have a Unit of Work implementation with, among others, the following method:
T Single<T>(Expression<Func<T, bool>> expression) where T : class, new();
and I call it, for ...
3
votes
1answer
290 views
Verify method has been called with IEnumerable containing 'x' elements with Moq
I have a repository with an Add method that takes an IEnumerable as parameter:
public void Add<T>(T item) where T : class, new(){}
In a unittest I want to verify that this method is called ...
3
votes
1answer
585 views
Mockito complains about wrong arguments
We try to verify the behaviour of an action with Mockito. The test code looks like this
final Type1 mock = mock(Type1.class);
new SomeAction<Type1>(mock).actionPerformed(null);
...
3
votes
4answers
970 views
CakePHP Auth Component Check User Before Login
I want to prevent banned users from logging in to the site and give them a message that they are banned. I tried to use isAuthorized() for this but it allows the user to login and only after that ...
3
votes
4answers
259 views
How reliable is Verify() in Moq?
I'm only new to Unit Testing and ASP.NET MVC. I've been trying to get my head into both using Steve Sanderson's "Pro ASP.NET MVC Framework". In the book there is this piece of code:
public class ...
3
votes
2answers
2k views
PHP verify PayPal Donation
How can I verify paypal donation?
In user panel I have donate button. And once someone actually donates I want to do something to him. But I do not how to check if user actually donated or just ...
3
votes
3answers
564 views
Verify domain ownership
When setting up Google Adsense or Gmail as a site owner, you are required to modify a CNAME record for verification. Microsoft does the same thing.
I am building a website where I would like an ...
3
votes
1answer
1k views
How to verify a website certificate in Cocoa Touch?
I currently open an https connection to a web server using NSURLConnection. Everything works as it should and I am able to retrieve the page content I am after. The certificate is issued by VeriSign ...
2
votes
1answer
170 views
Mockito - “Wanted but not invoked; However there were other interactions with this mock” error
I'm verifying that a function was called using Mockito, but Mockito is telling me that the function I'm verifying was never called and that other functions were called. But it seems to me like I'm ...
2
votes
4answers
462 views
Watir: How to verify text is NOT present in web page
I'm writing a test where I delete a record, and I need to verify that the record is no longer present after I've deleted it. I know how to verify the record text is present in a page, with ...
2
votes
1answer
1k views
Not hacking CurlException: 60 (cURL SSL Certificate Verification Problem)
The error that alot of people get with Facebook authentication is:
CurlException: 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL ...
2
votes
3answers
282 views
Any way to verify user's geolocation?
Newbie question.
I'm trying to make a mobile site using html5's geolocation (I know technically it's a separate spec, but still) to identify user's current position and post that to a web service ...
2
votes
7answers
184 views
How easy is it to verify that an email address is valid in PHP?
Given an email address, how can I verify that it is valid? (That the email's domain will accept email for that address.)
How would this look in PHP?
Note: I don't want to verfify that the email ...
2
votes
3answers
782 views
Is VERIFY(…) a good practice in C++ coding?
Also, how does it compare to throwing an exception when something goes wrong ?
2
votes
3answers
1k views
ASP.NET - How to include CSS only if it isn't alrealy included?
I use the code bellow to dynamically include a CSS file:
HtmlHead head = (HtmlHead)Page.Header;
HtmlLink link = new HtmlLink();
link.Attributes.Add("href", ...
2
votes
4answers
288 views
Mass verify svn repositories
Hi I'm wondering if there is a tool (can be commercial) to mass verify svn repositories. I know about using svnadmin but there are about 100 repositories and it's tedious to check whether if there's ...
2
votes
6answers
153 views
Check/Verify if user-provided CSS is not evil
I would like to allow my webapp users to save custom CSS through a text field to modify the look of their GUI.
I guess there are some evil CSS hacks out there. What should I take care about?
2
votes
3answers
304 views
.NET: Verify URL is image
I have a requirement to verify that a user-specified URL is to an image. So really I need a way to determine that a URL string points to a valid image. How can I do this in .NET?
2
votes
2answers
380 views
How to verify whether two SQL Server databases contain equal data?
Given two MS SQL databases which are known to have identical schemas, how should I tell whether they contain identical copies of the data?
I'm using MS SQL Server 2008 Express, and coding in C# and ...
1
vote
2answers
37 views
Is there a readable resource that can tell me what is valid html
I always have questions like: "Can I have such a path -> ul > div > li ?" I never know how to google these questions as it would work but wouldn't verify. Is there a resource that explains, in simple ...
1
vote
1answer
249 views
Python client - SSL lib - certificate verify failed
I'm trying to do a small secure HTTPS client for learning purposes and see how all the mechanics of SSL works on a higher level for now, so i'm trying to convert a simple socket into a ssl via ...
1
vote
0answers
34 views
Verify a Running JAR
I have a JAR I want to distribute. I have signed this jar file, and I would like for the JAR to verify that the hashes (found in the Manifest) are correct.
I found code on efreedom that verifies the ...
1
vote
2answers
78 views
How to verify domains faster in Python?
Is there any way how to improve scripts verification speed? Or there is another (not a sw) solution?
I tried something like this (but its slow and useless):
import urllib
from socket import *
...
1
vote
1answer
320 views
How to verify X509 cert without importing root cert?
My program contains 2 root certs I know and trust.
I have to verify certs of trustcenters and "user" certs issued by the trustcenters which all originate from these 2 root certs.
I use X509Chain ...
1
vote
2answers
530 views
svn problem :Cannot verify lock on path
when I want to delete some files , it happen to show me the error below:
Commit failed (details follow):
Cannot verify lock on path
'the file name...';
no matching lock-token available
If you want ...
1
vote
1answer
433 views
JTable Input Verifier
I am trying to create a simple Input Verifier for a JTable.
I ended up with overriding the method: editingStopped().
The problem is that the event does not include informations about the cell that has ...
1
vote
2answers
151 views
Why won't this bytecode verify
EDIT: The solution is that I was using aastore, when I should have been using iastore, because I wanted to store an item in an array of ints, while aastore is only for arrays of Objects.
I have the ...
1
vote
1answer
599 views
verify data signature generated with openssl, using crypto++
I have a server, running under python, signing a message sha256 digest using m2crypto
I use a public and private RSA key generated by openssl CLI. On the server side everythgin is OK
Python code :
...
1
vote
4answers
597 views
Serial generation with PHP
Throughout my days as a PHP Programmer and a beginner at C# programming I've always wondered of the best way to generate unique serials such as how Microsoft Office and Microsoft operating systems do.
...
1
vote
1answer
298 views
shell_exec with “svnadmin verify” returns nothing
I want to give output of svnadmin verify command from shell_exec()
var_dump(shell_exec('/usr/bin/svnadmin verify /Users/osman/Desktop/SVN/name'));
But it returns 'null'.
How can i access the ...
1
vote
3answers
358 views
File Signatures: How do I make sure that a Windows DLL isn't modified?
I once asked a question here if Windows DLLs are signed by Microsoft. I realized they were, and a good friend told me that the SigCheck utility can provide information about the signature of files; ...
1
vote
5answers
966 views
Best way to verify readline input in C#?
Oh, 2 things:
1) It is a console application.
2 ) I know it is in danish, but it doesn't really matter, its just an example of asking for some input. The text and variables does not matter.
Alright, ...
0
votes
2answers
21 views
How can I verify SQLite Commands?
I don't know how to verifiy SQLite commands in Android...
When I have that code:
final String CREATE_TABLE_USER =
"CREATE TABLE tbl_user ("
+ "id INTEGER ...
0
votes
1answer
34 views
Verifying a certificate
I am trying to validate a certificate I got from Apple with their own intermediate and root certificate. This is what I do and the answer I get:
c:\dev\OpenSSL-Win64\bin>openssl.exe verify -CAfile ...
0
votes
0answers
36 views
Is there a way to verify that my iOS app is Connecting to an established Bundle in iTunes Connect
For reference, I am following this informative guide on creating an iOS application with in app purchases. I am new to iOS development, but I recently became part of the $99/yr individual developer ...
0
votes
1answer
65 views
Verify copied data between Windows & Linux shares?
I just copied a ton of data from a machine running Windows 7 Ultimate to a server running Ubuntu Server LTS 10.04. I used the robocopy utility via PowerShell to accommplish this task, but I couldn't ...
0
votes
3answers
84 views
how to verify links in a PDF file
I have a PDF file which I want to verify whether the links in that are proper. Proper in the sense - all URLs specified are linked to web pages and nothing is broken. I am looking for a simple utility ...
0
votes
1answer
67 views
How to validate “Logging” to Android application using SMS validation
Before logging to android Application I want to enter my number and press Button.
This button handled to send SMS to the number enteres, so if the message received to me it will enter the application, ...
0
votes
1answer
53 views
Beginners Moq question on Verifying
I'm just playing around with Moq and I cannot work out how to get a call to Verify to work as expected. My problem seems to be that the method I'm calling on the SUT is not being called. Here's my ...
0
votes
1answer
121 views
Verify a PgP Encrypted and Signed file with BouncyCastle
I'm signing a document using PgP with the help of the bouncycastle library in c#. How do I verify a signed document to ensure that it is signed by the correct person or to even identify who signed it.
...
0
votes
2answers
148 views
Checking if password field and verify password fields are not equal?
I have a registration form on an app im working on. You enter your email then your desired password and a verify password. It needs to check if the two password fieldspasswordFieldOne and ...
0
votes
1answer
136 views
C#: RSACryptoServiceProvider Encrypt and VerifyData?
here are my methods for encrypting and decrypting data using RSA:
private RSACryptoServiceProvider _RSACSP { get; set; }
public byte[] Encrypt(byte[] value, bool doOAEPPadding)
{
try
{
...