Viewing Load Test Results in Web Browser/SSRS - testing

Is there a way to view the Load test results (i.e. Load Test Summary) from Visual Studio in a web browser or generate it with the Reporting Services?
I am wondering also if there is a nice way to generate SSRS templates for comparing tests runs, like it is possible in excell add-in?
Many thanks,
Wojtek

Is this what you are looking for:
http://loadtestreports.codeplex.com/

Related

Is it possible to embed a report held on crystal server into a separate web application?

We're developing an ASP MVC web application for a company to monitor and correct incoming data from third parties, then preview a report output before being distributed to their own clients. We've made a prototype with the reports being generated as Crystal Reports through the application itself using CR for Visual Studio.
The client already has a Crystal Server for some internal reporting, we're wondering if we can hook into that so that all Crystal Reports are stored in the same place and save on duplication. We would need to expose a preview of the report in our application and then export the reports from the Crystal Server in PDF and Excel formats ready to be distributed.
Is that possible? I've found very little on the subject.
In case anybody comes back for the answer... We've managed to get this working by using the 'opendocument' url path feature and embedding it into the site using an iframe. Documentation is here.

Advantage to using SSRS or Crystal reports when the output is simple and static?

I have an ASP.NET/C# web app in which the user needs to run reports with various criteria that will ALWAYS yield simple, 2-dimensional, tabular data. I'm tempted to use a sophisticated reporting engine like SSRS or Crystal Reports, but these seem like overkill, since there's really nothing to design (all outputs will be to CSV, or JSON for the browser to render in an HTML table).
In this scenario, am I eating too much complexity by trying to use SSRS or Crystal Reports? Should I instead just write custom classes to dynamically assemble SQL statements (based on user selections) that will be fired against the database?
Does SSRS or CR add anything that is of value (within the requirements constraints I've already described)...?
Its depend on your requirement if you want to minimal overhead on your web app then please go ahead and use your custom codes since you are not required any styling or extra functions.
Just get JSON objects and fill in HTML and go Head !!
I am working with ssrs So i will talk just about it:
ssrs is a very useful tool for building a Reports
all You need is sql server Stored Procedure to build your report
then deploy it to report server and use this report from your app
-now all you need in your app just one page for all reports and you path the URL
dynamically with report name
You need to know this :
-ssrs did not work correctly with all browser
for Exp :
-Print Btn just work with IE
so Mozila and Google you need to use java script to print Report
-some issue with criteria section :
there is no way to rename the 'select value' with drop down
so you need to use java scrip to handle it
also you find ( Null and chick box ) any customer did not know what null mean so
you need first to remove null keyword or to rename it to anther Keyword
also you need java script to do this
the most problem i have :
all reports in reports server so
when i go to a new client what i need
just Sql server no need to setup visual studio and ssrs tool
just to deploy all reports on client report server
its very bad ..
i solved this issue with tool i had make to deploy the all the report
and no need to setup VS just to deploy the report
i think that the most important problem i have
and all of it i found a work around to solve .. and it takes more time
finally :
use ssrs or CR its very easy to use and make report very fast no need to create a custom page for report and develop all its control just like print and export
report to PDF,excel or any type
but if you have a few report i think no need to use any reports tool

upload test cases from excel to microsoft test manager 2013

In my current project we are using Microsoft Test Manager 2013. We have prepared test cases in excel. How can we upload prepared test cases from excel to MTM 2013.
Additionally to the answer by #MrHinsh:
Check Create Manual Tests using Team Web Access and look for the question Can I copy test cases and test steps from an existing Excel worksheet? in the Q&A part.
I do this using the free tool tcmimport: http://tcmimport.codeplex.com/
You can do this by copying and pasting into the test grid in the web access for TFS 2013. In the web access to to the test tab and for the test suit you want to add items to switch to grid mode. Then past in in the required format.
I recommend preparing test cases directly in Web Access or MTM. Your current workflow is a dysfunction resulting from Quality Centre use 😊.

Tool for rest webservice parameterized load test

I have a set of rest webservices in java, I need a tool that allows to load test them using parameters (i use windows operating system and Java or .net). I need to call 1 webservice 100 times simultaneously with different parameters.
This can be done just calling the method that is the core of the webservice, so basically I need to run a unit test many times concurrently with different parameters
Can you suggest any SIMPLE tool?
Thank you
SoapUI
Visual Studio has a load testing component. I would recommend recording a "unit test" using Fiddler2 and exporting as a Visual Studio webtest.
Visual studio will allow you to plug in parameter values from a spreadsheet, text file or database.
The downside is the Visual Studio 2010 Ultimate edition is required for this, which is not cheap.
Otherwise the old WCat may do the trick.
You could still record the exact details of the transaction using Fiddler and convert to tests using JMeter to do the load test bit.
Web Performance Load Tester. It is not specifically designed for web services, but works pretty well with them.
You can try the chrome extension "DHC Client" for testing web service. It provide a very good interface and you can also check it with test and image too. Here is link:-
https://chrome.google.com/webstore/detail/dhc-rest-client/aejoelaoggembcahagimdiliamlcdmfm?hl=en
It also store the variable value for the next time and you can also store the cases and value for future reference.

Is there any simple way to crawl all of the SharePoint 2010 site information to save it into a database?

I'm working with Visual Studio 2010 and Sharepoint 2010. I would like to know if there's a way to have a web part that crawls all the data within a SharePoint site so I can save it into a custom db.
You can certainly create a custom web part that will do this. I do not know of an out of the box web part that will work. I began writing something like this when I found SharePoint List Source and Destination. It's a CodePlex project for an SSIS SharePoint adapter. We did not need a user interface for the extract, so we used it successfully last year for transferring data between SQL Server and SharePoint.
Sounds like all you need to do is use the API, OOB web services, or the Client OM to write some code and access the lists directly. Which approach you take depends mostly on where the code will run.
Well I found this article - Document Library Tree View Web Part for SharePoint - it is a Web Part that shows all the info of any of the document libraries within a site. At least I know how to crawl that kind of library.